Reputation: 3302
We are building a scalable point-to-point microservice architecture with client-side load-balancing and fail-over. The base idea is to manage service discovery with DNS SRV records, just as HashiCorps' Consul does.
As HTTP client we use Apache http-components.
The algorithm I envision looks something like this:
HttpClient
to round-robin through the available services.HttpClient
if hosts are added or removed.Constraints:
Is there a pretty way to configure Apache's http-components this way that I haven't found yet? Is there any better library for this kind of requirements?
Thanks a lot for input and ideas.
Upvotes: 1
Views: 4168