You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by li...@apache.org on 2020/08/17 05:06:21 UTC

[dubbo] branch 3.0-k8s updated (b606cf3 -> 29b5ba3)

This is an automated email from the ASF dual-hosted git repository.

liujun pushed a change to branch 3.0-k8s
in repository https://gitbox.apache.org/repos/asf/dubbo.git.


    from b606cf3  Feat: extend MetadataService (#6574)
     add 29b5ba3  Feat: add DNS registry support (#6591)

No new revisions were added by this update.

Summary of changes:
 dubbo-all/pom.xml                                  |   8 +
 dubbo-dependencies-bom/pom.xml                     |   2 +-
 .../dubbo/metadata/MetadataChangeListener.java     |   8 +
 .../dubbo-registry-dns}/pom.xml                    |  68 +++--
 .../dubbo/registry/dns/DNSServiceDiscovery.java    | 332 +++++++++++++++++++++
 .../registry/dns/DNSServiceDiscoveryFactory.java}  |   8 +-
 .../dubbo/registry/dns/util/DNSClientConst.java}   |  24 +-
 .../dubbo/registry/dns/util/DNSResolver.java       | 108 +++++++
 .../dubbo/registry/dns/util/ResolveResult.java     |  63 ++--
 ...g.apache.dubbo.registry.client.ServiceDiscovery |   1 +
 ...e.dubbo.registry.client.ServiceDiscoveryFactory |   1 +
 .../registry/dns/DNSServiceDiscoveryTest.java      | 178 +++++++++++
 .../dubbo/registry/dns/util/DNSResolverTest.java   |  13 +-
 dubbo-registry/pom.xml                             |   1 +
 14 files changed, 716 insertions(+), 99 deletions(-)
 copy {dubbo-plugin/dubbo-qos => dubbo-registry/dubbo-registry-dns}/pom.xml (55%)
 create mode 100644 dubbo-registry/dubbo-registry-dns/src/main/java/org/apache/dubbo/registry/dns/DNSServiceDiscovery.java
 copy dubbo-registry/{dubbo-registry-consul/src/main/java/org/apache/dubbo/registry/consul/ConsulServiceDiscoveryFactory.java => dubbo-registry-dns/src/main/java/org/apache/dubbo/registry/dns/DNSServiceDiscoveryFactory.java} (85%)
 copy dubbo-registry/{dubbo-registry-api/src/main/java/org/apache/dubbo/registry/RegistryServiceListener.java => dubbo-registry-dns/src/main/java/org/apache/dubbo/registry/dns/util/DNSClientConst.java} (61%)
 create mode 100644 dubbo-registry/dubbo-registry-dns/src/main/java/org/apache/dubbo/registry/dns/util/DNSResolver.java
 copy dubbo-common/src/test/java/org/apache/dubbo/rpc/model/User.java => dubbo-registry/dubbo-registry-dns/src/main/java/org/apache/dubbo/registry/dns/util/ResolveResult.java (54%)
 create mode 100644 dubbo-registry/dubbo-registry-dns/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.registry.client.ServiceDiscovery
 create mode 100644 dubbo-registry/dubbo-registry-dns/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.registry.client.ServiceDiscoveryFactory
 create mode 100644 dubbo-registry/dubbo-registry-dns/src/test/java/org/apache/dubbo/registry/dns/DNSServiceDiscoveryTest.java
 copy dubbo-common/src/test/java/org/apache/dubbo/common/config/PropertiesConfigurationTest.java => dubbo-registry/dubbo-registry-dns/src/test/java/org/apache/dubbo/registry/dns/util/DNSResolverTest.java (74%)