Go to file
2019-10-15 16:08:38 +01:00
agent remove agent readme 2019-07-28 19:47:25 +01:00
api TLS -> ToS 2019-10-14 12:04:49 +01:00
broker Extend the stream timeout 2019-10-04 16:44:21 +01:00
client Merge pull request #833 from orbli/patch-1 2019-10-10 07:40:48 +01:00
codec Improve stream processing 2019-08-25 19:30:22 +01:00
config Add broker service to config/cmd 2019-10-03 16:22:26 +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 Provide a way to get status now 2019-09-20 17:55:02 +01:00
network Use DialMode/ListenMode 2019-10-15 16:08:38 +01:00
plugin fix plugin init 2019-09-10 05:32:49 -07:00
proxy Update router querying method (#834) 2019-10-09 17:13:52 +01:00
registry rcache becomes cache 2019-10-14 22:39:26 +01:00
router Changed names of some variables. 2019-10-09 19:08:24 +01:00
runtime Add runtime output 2019-09-24 19:00:11 +01:00
server Update rpc_server.go 2019-09-27 16:01:16 +02:00
service Update internal service definition 2019-10-07 08:34:15 +01:00
store Add store service client 2019-10-11 14:44:42 +01:00
sync move mutex to memory 2019-10-14 22:38:22 +01:00
transport Add tunnel fixes for quic and keepalive 2019-09-12 16:22:43 -07:00
tunnel Use DialMode/ListenMode 2019-10-15 16:08:38 +01:00
util Add ability to set log prefix 2019-10-02 17:42:34 +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 Bump travis 2019-10-01 18:33:26 +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 Regenerate go.mod 2019-10-12 12:04:55 +01:00
go.sum Regenerate go.mod 2019-10-12 12:04:55 +01:00
LICENSE Add apache license 2015-02-27 09:38:47 +00:00
micro.go Add service Name 2019-10-07 08:32:28 +01: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 service Name 2019-10-07 08:32:28 +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.