Go to file
2019-10-23 16:51:22 +01:00
agent remove agent readme 2019-07-28 19:47:25 +01:00
api E2E tests for certmagic ACME provider 2019-10-17 16:31:02 +01:00
broker fix divide by zero bug 2019-10-19 08:11:05 +01:00
client Change router.Route metric to int64. Set the route metric properly 2019-10-23 16:51:22 +01:00
codec Improve stream processing 2019-08-25 19:30:22 +01:00
config Remove consul registry (#818) 2019-10-23 15:53:28 +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 Change router.Route metric to int64. Set the route metric properly 2019-10-23 16:51:22 +01:00
plugin fix plugin init 2019-09-10 05:32:49 -07:00
proxy Round robin routes we've sorted by metric 2019-10-22 11:53:49 +01:00
registry Remove consul registry (#818) 2019-10-23 15:53:28 +01:00
router Change router.Route metric to int64. Set the route metric properly 2019-10-23 16:51:22 +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 cloudflare workers KV Store implementation 2019-10-15 12:35:45 +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 Close the socket in the link 2019-10-23 16:39:26 +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 Implementation of certmagic storage using micro's store and sync packages 2019-10-15 19:32:20 +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 Don't touch go.mod 2019-10-17 16:35:09 +01:00
go.sum Update go.mod for cloudflare 2019-10-15 12:35:20 +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.