Questions tagged [service-discovery]

Network protocols which allow automatic detection of devices and services offered by these devices on a computer network.

Service discovery protocols are network protocols which allow automatic detection of devices and services offered by these devices on a computer network. Service discovery requires a common language to allow software agents to make use of one another's services without the need for continuous user intervention.

Source: http://en.wikipedia.org/wiki/Service_discovery

618 questions
2
votes
2 answers

How to configure kong api gateway with service discovery?

I am working on a microservice architecture. I want to have a kong API gateway implemented at the front. I don't want to go into kong admin API and manually add all the exposed API. Can I take the help of any service discovery implementation like…
Bushra Saifi
  • 103
  • 1
  • 12
2
votes
1 answer

Service discovery using ECS Fargate

I have 2 services within ECS Fargate running. I have set up service discovery with a private dns namespace as all my services are within a private subnet. When I try and hit my config container from another I am getting the following…
2
votes
0 answers

Communications between services in ECS using the bridge network

I am using the bridge network to try and communicate between services. I have the services running independently but am unable to resolve by the .. The SRV records are being created for the services. Should I be linking the…
2
votes
3 answers

Eureka client: com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server

I'm using Eureka Server microservice and Eureka client microservice. I initialized the Eureka Server first, and then initialized the eureka client. I'm getting the following error! com.netflix.discovery.shared.transport.TransportException: Cannot…
2
votes
1 answer

Kubernetes Services Discovery - Cross Namespace

I have a kubernetes cluster with serviceA on namespaceA and serviceB on namespaceB. I want, from serviceA, use kubernetes service discovery to programmatically list serviceB. I am planning to use spring cloud kubernetes ( @EnableDiscoveryClient…
guilhermecgs
  • 2,913
  • 11
  • 39
  • 69
2
votes
0 answers

ECS Service Discovery is updated too late after task is stopped

Stackoverflow Service Discovery Translate: box in shopping feed Stories ship method Review + Maand Hi, I'm running 2 AWS ECS services (A and B) within the same cluster, using the Fargate launch type. Service A should be able to connect to service B.…
user1255553
  • 960
  • 2
  • 15
  • 27
2
votes
0 answers

Discovery registering the service with port 0 before tomcat generating port(dynamic port )

I have a service which uses two feign client interfaces and this issue happening for this service only not for services with no feign clients. Issue: Eureka Discovery is initializing the service with port '0' before tomcat generating the port which…
2
votes
1 answer

AWS Lambda ECS service discovery

I'm trying to reach a service running in ECS which have service discovery enabled. Currently, I cannot resolve the dns. Been stuck on this for over 16hours... All the links in google are purple :D I'm actually considering looking at page 2 of the…
2
votes
1 answer

Using Netflix Eureka on Kubernetes

We are currently setting up a Micro-service Architecture using spring boot and netflix components, for Deployment we are planning to go with aws kubernetes(EKS) setup. We are in a in a dilemma to choose whether to use netflix's Eureka & ribbon…
rajesh023
  • 704
  • 1
  • 5
  • 15
2
votes
2 answers

Using AWS ECS Service discovery with Application Load Balancer

When creating a fargate service in an ECS cluster, I'm using an application load balancer and I'm also using service discovery so my service has an endpoint. My question is: where should I send my requests, to the endpoint provided by service…
2
votes
1 answer

AWS Service discovery, nginx and node issue

I am running 2 services in AWS ECS fargate. One is with nginx containers running behind the application load balancer. And the other is running with a node.js application. Node application is running with service discovery and Nginx containers proxy…
SantoT
  • 21
  • 2
2
votes
0 answers

How to relabel consul sd config to get service discovery stats based on consul metadata?

This is how 2 services among many in consul look like: "1": { "ID": "1", "Service": "Service X", "Meta": { "country": "USA" }, "Port": 0, "Address": "1.1.1.1", "Weights": { …
maopuppets
  • 420
  • 3
  • 9
  • 27
2
votes
1 answer

How to disable CompositeDiscoveryClient and SimpleDiscoveryClient in service discovery library

We've written an in-house service discovery (SD) client based on the spring-cloud-commons SPI, meaning it provides implementations for interfaces ServiceRegistry and DiscoveryClient and some other Spring-provided abstractions. Apps that use our…
Adam Hughes
  • 14,601
  • 12
  • 83
  • 122
2
votes
3 answers

How to make a service discovery for Google App Engine? How to get service URL?

I want to get URL's of services for particular project, how can I do this? I need URL's like .appspot.com I tried App Engine Admin api, but it can only provide names of the services.
2
votes
0 answers

ECS service discovery - how to implement ribbon or its equivalent

I am attempting to use ECS service discovery explained here https://aws.amazon.com/blogs/aws/amazon-ecs-service-discovery/ I am able to get the instances registered as A records under service name in Route53. Now the next thing is to implement…
user2297083
  • 168
  • 11