Go to file
2019-05-24 20:06:27 +08:00
broker add context to server.SubscriberOptions and broker.SubscribeOption 2019-01-24 15:36:01 +03:00
client rename reqBody variable to request 2019-05-02 18:06:43 +02:00
cmd fix: client retries will be 0 when not set 2019-04-19 00:05:02 +08:00
codec Update headers to remove X- prefix 2019-01-24 10:11:02 +00:00
errors Add timeout error 2018-11-25 09:41:28 +00:00
metadata Copy metadata 2019-01-17 09:40:49 +00:00
registry Use existing consul client for watcher 2019-05-16 12:37:48 +10:00
selector reuse rcache 2019-02-13 17:47:31 +08:00
server add AutoAck support for Server 2019-05-24 20:06:27 +08:00
transport fix race in http transport 2019-02-15 17:20:00 +03:00
.travis.yml bump travis 2019-03-07 20:29:40 +00:00
function_test.go rename mock things to memory 2019-01-14 15:27:25 +00:00
function.go Move publication to message 2018-04-14 18:21:02 +01:00
go.mod Update go mod 2019-05-22 16:11:06 +00:00
go.sum Update go mod 2019-05-22 16:11:06 +00:00
LICENSE Add apache license 2015-02-27 09:38:47 +00:00
micro.go Update headers to remove X- prefix 2019-01-24 10:11:02 +00:00
micro.png Rename 2019-01-23 18:14:36 +00:00
options.go add ability to set address 2019-02-11 18:37:25 +00:00
publisher.go accept publisher options 2019-05-21 07:49:30 +00:00
README.md Update README.md 2019-05-23 00:35:02 +01:00
README.zh-cn.md remove sponsors 2019-05-19 15:38:49 +00:00
service_test.go add benchmarks 2019-01-16 18:54:43 +00:00
service.go Move RegisterInterval into the server 2019-01-24 13:22:17 +00:00
wrapper_test.go switch to stdlib context 2018-03-03 11:53:52 +00:00
wrapper.go Copy metadata 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.