Go to file
2020-05-26 15:52:21 +01:00
.github Update FUNDING.yml 2020-04-29 18:45:55 +01:00
agent fix HTTP 401 Unauthorized, {"message": "401: Unauthorized", "code": 0} (#1586) 2020-04-28 13:06:01 +01:00
api Replace auth account.Namespace with account.Scopes 2020-05-19 18:17:17 +01:00
auth Merge master 2020-05-26 15:52:21 +01:00
broker broker: add publish context (#1590) 2020-04-28 19:29:00 +03:00
client Add Debug.Cache method 2020-05-24 18:45:57 +01:00
codec fix missing pointer 2020-04-14 17:13:38 +01:00
config Merge master 2020-05-26 15:52:21 +01:00
debug Add Debug.Cache method 2020-05-24 18:45:57 +01:00
errors regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
logger Display only logging file name as opposed to path in logs (#1580) 2020-04-27 09:55:50 +01:00
metadata add metadata set 2020-04-12 11:17:23 +01:00
network Use go.micro.mu 2020-04-19 17:03:25 +01:00
plugin fix import paths for v2 release 2020-01-30 14:44:40 +03:00
proxy minor tweak add log line to proxy and basic auth provider by default (#1513) 2020-04-09 14:10:17 +01:00
registry Merge branch 'master' into registy-not-found 2020-05-14 19:39:43 +01:00
router Strip down router code (#1627) 2020-05-13 16:13:36 +01:00
runtime Add account issuers 2020-05-21 16:41:55 +01:00
server Merge branch 'master' of https://github.com/micro/go-micro into auth-scopes 2020-05-21 12:32:52 +01:00
service regenerate all proto based files (#1531) 2020-04-14 16:25:09 +03:00
store check if the db conn is nil before doing anything (#1652) 2020-05-20 14:03:38 +01:00
sync Strip MetadataKey global var 2020-04-12 11:16:08 +01:00
transport regenerate all proto based files (#1531) 2020-04-14 16:25:09 +03:00
tunnel dont display t.Log/t.Logf as errors in github actions (#1508) 2020-04-09 14:05:46 +03:00
util Merge master 2020-05-26 15:52:21 +01:00
web Registration Retry / Interval (#1651) 2020-05-20 11:49:09 +01:00
_config.yml Set theme jekyll-theme-architect 2019-11-14 11:55:07 +00:00
.gitignore .gitignore file for develop tools 2019-09-04 15:47:46 +08:00
.golangci.yml add golanglint-ci 2019-12-03 16:31:43 +03:00
CNAME Update CNAME 2019-11-14 11:54:16 +00:00
defaults.go Setting up file store in constructor and not in init which is o… (#1499) 2020-04-07 16:43:43 +02:00
Dockerfile feat(dockerfile): adding dumb-init to base image (#1278) 2020-02-29 21:55:15 +00:00
event.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
function_test.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
function.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
generate.go regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
go.mod tidy go mdo 2020-05-14 13:33:11 +01:00
go.sum tidy go mdo 2020-05-14 13:33:11 +01:00
LICENSE Add apache license 2015-02-27 09:38:47 +00:00
micro.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
options.go Pass client to more of the runtime 2020-05-11 17:57:39 +01:00
README.md Update README.md 2020-05-23 16:47:23 +01:00
README.zh-cn.md Update README.md change godoc => go.dev (#1236) 2020-02-22 08:56:42 +00:00
service_test.go prune util/log and user logger (#1237) 2020-02-23 13:45:20 +00:00
service.go Add Debug.Cache method 2020-05-24 18:45:57 +01:00

Go Micro License Go.Dev reference Travis CI Go Report Card Slack Widget

Go Micro is a framework for distributed systems 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 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.

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

  • 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 system is a HTTP event message broker.

  • 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

To make use of Go Micro

import "github.com/micro/go-micro/v2"

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

License

Go Micro is Apache 2.0 licensed.