From f9400ba7136b82d0c7fe4dcbd1bfdc334f63aab8 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Wed, 6 Nov 2019 22:03:35 +0000 Subject: [PATCH] update readme --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 1c689389..2e6b2723 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,7 @@ Go Micro abstracts away the details of distributed systems. Here are the main fe - **Service Discovery** - Automatic service registration and name resolution. Service discovery is at the core of micro service development. When service A needs to speak to service B it needs the location of that service. The default discovery mechanism is -multicast DNS (mdns), a zeroconf system. You can optionally set gossip using the SWIM protocol for p2p networks or consul for a -resilient cloud-native setup. +multicast DNS (mdns), a zeroconf system. You can optionally set the use of etcd for a resilient cloud-native setup. - **Load Balancing** - Client side load balancing built on service discovery. Once we have the addresses of any number of instances of a service we now need a way to decide which node to route to. We use random hashed load balancing to provide even distribution