Milos Gajdos 92495d22db
Fixes advert dampening behaviour.
This commit adds the following changes:
* advert now stores a list of route events as opposed to just last one
* attempt to dedup route events before appending them to advert
* have max suppress threshold for long time suppressed adverts
* decaying events on every advert tick

Originally we werent decaying penalties on every advert tick.
That was incorrect behaviour. Furthermore some events would end up being
accumulated potentially causing memory leaks.

We were also overriding the last received router event which was causing
incorrect sequence of events to be applied when received by a receiver:
Create, Delete would be "squashed" into Delete only which would be
nonsensical since the Create event would never be delivered hence we
would be deleting nonexistent routes.

Not Decaying the events on every tick or not having the max suppression
threshold could lead to DoS by growing the router memory infinitely.
2019-07-16 19:00:25 +01:00
2019-05-31 12:10:41 +01:00
2019-07-08 08:01:42 +01:00
2019-07-10 08:26:33 +01:00
2019-07-07 12:44:09 +01:00
2019-07-10 07:47:17 +01:00
2019-07-11 14:13:58 +08:00
2018-11-25 09:41:28 +00:00
2019-01-17 09:40:49 +00:00
2019-07-16 19:00:25 +01:00
2019-06-03 18:45:37 +01:00
2019-07-10 19:58:30 +01:00
2019-06-12 12:54:45 +01:00
2019-07-07 12:44:09 +01:00
2019-07-13 23:47:57 +03:00
2019-07-08 08:01:42 +01:00
2019-07-08 08:01:42 +01:00
2019-05-31 13:05:03 +01:00
2019-07-08 08:01:42 +01:00
2019-07-11 21:40:52 +01:00
2019-07-11 21:40:52 +01:00
2015-02-27 09:38:47 +00:00
2019-01-24 10:11:02 +00:00
2019-07-10 07:47:17 +01:00
2019-05-21 07:49:30 +00:00
2019-05-23 00:35:02 +01:00
2019-05-19 15:38:49 +00:00
2019-06-21 13:36:11 +01:00
2018-03-03 11:53:52 +00:00
2019-01-17 09:40:49 +00:00

Go Micro License GoDoc Travis CI Go Report Card

Go Micro is a framework for microservice development.

Overview

Go Micro provides the core requirements for distributed systems development including RPC and Event driven communication. The micro philosophy is sane defaults with a pluggable architecture. We provide defaults to get you started quickly but everything can be easily swapped out.

Plugins are available at github.com/micro/go-plugins.

Follow us on Twitter or join the Slack community.

Features

Go Micro abstracts away the details of distributed systems. Here are the main features.

  • 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.

  • 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 across the services and retry a different node if there's a problem.

  • Message Encoding - Dynamic message encoding based on content-type. The client and server will use codecs along with content-type to seamlessly encode and decode Go types for you. Any variety of messages could be encoded and sent from different clients. The client and server handle this by default. This includes protobuf and json by default.

  • Request/Response - RPC based request/response with support for bidirectional streaming. We provide an abstraction for synchronous communication. A request made to a service will be automatically resolved, load balanced, dialled and streamed. The default transport is http/1.1 or http2 when tls is enabled.

  • Async Messaging - PubSub is built in as a first class citizen for asynchronous communication and event driven architectures. Event notifications are a core pattern in micro service development. The default messaging is point-to-point http/1.1 or http2 when tls is enabled.

  • Pluggable Interfaces - Go Micro makes use of Go interfaces for each distributed system abstraction. Because of this these interfaces are pluggable and allows Go Micro to be runtime agnostic. You can plugin any underlying technology. Find plugins in github.com/micro/go-plugins.

Getting Started

See the docs for detailed information on the architecture, installation and use of go-micro.

v3.11.23 Latest
2024-12-22 22:24:08 +03:00
Languages
Go 100%