vertx-service-discovery
vertx-service-discovery copied to clipboard
Some tools one can use for doing microservices with Vert.x
Hi, I am working to deploy a vert.x in PCF, which will consume other service running in PCF through Eureka Discovery. Do vert.x supports Eureka client. If so could you...
Hi, I'm using vertx-service-discovery for rpc service. And use vertx-ignite for cluster. The vertx version is 3.5.4. I also got this exception: NO HANDLER (-1) for address , it appears...
#### Context Presently, the [`KubernetesServiceImporter`](https://github.com/vert-x3/vertx-service-discovery/blob/master/vertx-service-discovery-bridge-kubernetes/src/main/java/io/vertx/servicediscovery/kubernetes/KubernetesServiceImporter.java) tracks services 'statically': - if a service is added, [it will publish a record](https://github.com/vert-x3/vertx-service-discovery/blob/8733d78e6b49f68e4faa0313289ddb61046c4e5b/vertx-service-discovery-bridge-kubernetes/src/main/java/io/vertx/servicediscovery/kubernetes/KubernetesServiceImporter.java#L246-L251) - if a service is updated, [it will update the record](https://github.com/vert-x3/vertx-service-discovery/blob/8733d78e6b49f68e4faa0313289ddb61046c4e5b/vertx-service-discovery-bridge-kubernetes/src/main/java/io/vertx/servicediscovery/kubernetes/KubernetesServiceImporter.java#L264-L271)...
Signed-off-by: Paulo Lopes Motivation: Update guava
vertx-service-discovery relies on ```apache-curator-2.13.0``` version while vertx-zookeeper depends on ```apache-curator-4.3.0```. Many exceptions are thrown when creating a vertx project with zookeeper clustering and zookeper based service discovery.
I think the service discovery should support some load balance strategy, it likes round-robin, lowest latency first, etc. And some HA strategy, it likes retry, multiple parallel call, etc. The...
When we publish an HTTPEndPoint record, we pass an argument named as root. This root is not accessed when we getRecord. Publishing record: ```java ServiceDiscovery discovery = ServiceDiscovery.create(vertx, new ServiceDiscoveryOptions()...
Is it planned to add a type to be able to discover AuthProvider service. It will be useful for a centralized auth in microservice architecture... If you are interested, but...