zrlw commented on PR #637:
URL: 
https://github.com/apache/dubbo-spi-extensions/pull/637#issuecomment-2978997454

   according to 
org.apache.dubbo.metadata.store.zookeeper.ZookeeperMetadataReport, all of them 
should be taken as persistent data.
   ZookeeperMetadataReport.java
   ```
      @Override
       protected void doStoreProviderMetadata(MetadataIdentifier 
providerMetadataIdentifier, String serviceDefinitions) {
           storeMetadata(providerMetadataIdentifier, serviceDefinitions);
       }
   
       @Override
       protected void doStoreConsumerMetadata(MetadataIdentifier 
consumerMetadataIdentifier, String value) {
           storeMetadata(consumerMetadataIdentifier, value);
       }
   
       private void storeMetadata(MetadataIdentifier metadataIdentifier, String 
v) {
           zkClient.createOrUpdate(getNodePath(metadataIdentifier), v, false);
       }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org

Reply via email to