Go to file
2019-09-05 23:52:54 +08:00
agent remove agent readme 2019-07-28 19:47:25 +01:00
api Remove Port from registry 2019-07-08 08:01:42 +01:00
broker wait nats drain since it's asynchronous 2019-08-07 17:58:45 +08:00
client use with stream for client connection 2019-08-31 18:26:48 +01:00
codec Improve stream processing 2019-08-25 19:30:22 +01:00
config Update config source README file 2019-09-04 15:49:58 +08:00
data Add top level data package comment 2019-07-30 16:47:18 +01:00
debug Add monitor/debug packages 2019-08-06 17:53:14 +01:00
errors Add timeout error 2018-11-25 09:41:28 +00:00
metadata Copy metadata 2019-01-17 09:40:49 +00:00
monitor only operate on clients that are the same as the server 2019-08-13 16:08:56 +01:00
network Freeze network graph when building full network topology 2019-09-05 00:16:22 +01:00
proxy fix broken build 2019-08-29 13:11:20 +01:00
registry fix registry addr error for mq-rpc 2019-08-14 21:32:28 +08:00
router Only emit the events when actually deleting the route 2019-08-29 16:25:21 +01:00
runtime remove travis files 2019-06-03 18:45:37 +01:00
server Full support for grpc server side 2019-08-26 12:33:59 +01:00
service Fix mucp service option passing 2019-08-20 16:48:09 +01:00
sync Change Publication to Event 2019-07-07 12:44:09 +01:00
transport Full support for grpc server side 2019-08-26 12:33:59 +01:00
tunnel Only set link if not multicast 2019-09-05 07:41:19 +01:00
util switch warn to error logging 2019-08-29 17:21:43 +01:00
web Remove readme and examples from web repo 2019-07-22 09:57:34 -07:00
.gitignore .gitignore file for develop tools 2019-09-04 15:47:46 +08:00
.travis.yml Strip master from travis 2019-08-07 22:32:16 +01:00
common_test.go Remove Port from registry 2019-07-08 08:01:42 +01:00
function_test.go Add monitor/debug packages 2019-08-06 17:53:14 +01:00
function.go Wait() option now accept *sync.WaitGroup 2019-05-27 21:17:57 +08:00
go.mod Update go mod 2019-08-12 12:35:09 +01:00
go.sum Update go mod 2019-08-12 12:35:09 +01: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
options.go Fix breaks and go fmt 2019-07-10 07:47:17 +01: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 Update README.zh-cn.md 2019-09-05 23:52:54 +08:00
service_test.go Add monitor/debug packages 2019-08-06 17:53:14 +01:00
service.go Add monitor/debug packages 2019-08-06 17:53:14 +01: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.