Skip to content
The Go Micro services development framework
Go
Branch: master
Clone or download

Latest commit

vtolstov api: use http request Clone (#1458)
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
Latest commit 7b7a859 Apr 1, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github regenerate all proto (#1440) Mar 30, 2020
agent regenerate all proto (#1440) Mar 30, 2020
api api: use http request Clone (#1458) Mar 31, 2020
auth Service => Service Auth Mar 31, 2020
broker regenerate all proto (#1440) Mar 30, 2020
client add stream timeout option which defaults to 0 (#1456) Mar 31, 2020
codec regenerate all proto (#1440) Mar 30, 2020
config Add options to config (#1450) Mar 31, 2020
debug regenerate all proto (#1440) Mar 30, 2020
errors regenerate all proto (#1440) Mar 30, 2020
logger logger: fix reading env var (#1414) Mar 25, 2020
metadata metadata: change method name (#1454) Mar 31, 2020
monitor fix import paths for v2 release Jan 30, 2020
network regenerate all proto (#1440) Mar 30, 2020
plugin fix import paths for v2 release Jan 30, 2020
proxy Add metadata Get method (#1425) Mar 26, 2020
registry regenerate all proto (#1440) Mar 30, 2020
router regenerate all proto (#1440) Mar 30, 2020
runtime Add namespace support to Kubernetes client (#1446) Mar 31, 2020
server regenerate all proto (#1440) Mar 30, 2020
service regenerate all proto (#1440) Mar 30, 2020
store regenerate all proto (#1440) Mar 30, 2020
sync [WIP] Store Sync (#1365) Mar 18, 2020
transport regenerate all proto (#1440) Mar 30, 2020
tunnel minimize allocations in logger and tunnel code (#1323) Mar 11, 2020
util Merge branch 'master' into auth-srv-srv Mar 31, 2020
web minimize allocations in logger and tunnel code (#1323) Mar 11, 2020
.gitignore .gitignore file for develop tools Sep 4, 2019
.golangci.yml add golanglint-ci Dec 3, 2019
CNAME Update CNAME Nov 14, 2019
Dockerfile feat(dockerfile): adding dumb-init to base image (#1278) Feb 29, 2020
LICENSE Add apache license Feb 27, 2015
README.md Update README.md change godoc => go.dev (#1236) Feb 22, 2020
README.zh-cn.md Update README.md change godoc => go.dev (#1236) Feb 22, 2020
_config.yml Set theme jekyll-theme-architect Nov 14, 2019
defaults.go fix import paths for v2 release Jan 30, 2020
event.go fix import paths for v2 release Jan 30, 2020
function.go fix import paths for v2 release Jan 30, 2020
function_test.go fix import paths for v2 release Jan 30, 2020
generate.go regenerate all proto (#1440) Mar 30, 2020
go.mod regenerate all proto (#1440) Mar 30, 2020
go.sum regenerate all proto (#1440) Mar 30, 2020
micro.go fix import paths for v2 release Jan 30, 2020
options.go Service => Service Auth Mar 31, 2020
service.go Service => Service Auth Mar 31, 2020
service_test.go prune util/log and user logger (#1237) Feb 23, 2020

README.md

Go Micro License Go.Dev reference 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 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 an embedded NATS server.

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

You can’t perform that action at this time.