Go to file
ben-toogood 2674790694
Service => Service Auth (#1448)
* Service => Service Auth

* WithServicePrivileges => ServicePrivileges

* Fixes for CLI login

* ServicePrivileges => ServiceToken

* Fallback to service token

Co-authored-by: Ben Toogood <ben@micro.mu>
2020-03-31 16:18:04 +01:00
.github regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
agent regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
api regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
auth Service => Service Auth 2020-03-31 12:44:34 +01:00
broker regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
client Fallback to service token 2020-03-31 13:51:32 +01:00
codec regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
config Service => Service Auth 2020-03-31 12:44:34 +01:00
debug regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
errors regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
logger logger: fix reading env var (#1414) 2020-03-25 22:00:43 +00:00
metadata api: add static router and improve path parser in rpc handler (#1437) 2020-03-30 09:04:59 +01:00
monitor fix import paths for v2 release 2020-01-30 14:44:40 +03:00
network regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
plugin fix import paths for v2 release 2020-01-30 14:44:40 +03:00
proxy Add metadata Get method (#1425) 2020-03-26 18:50:00 +00:00
registry regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
router regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
runtime Add namespace support to Kubernetes client (#1446) 2020-03-31 12:03:32 +01:00
server regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
service regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
store regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
sync [WIP] Store Sync (#1365) 2020-03-18 16:39:36 +00:00
transport regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
tunnel minimize allocations in logger and tunnel code (#1323) 2020-03-11 17:55:39 +00:00
util Merge branch 'master' into auth-srv-srv 2020-03-31 16:15:17 +01:00
web minimize allocations in logger and tunnel code (#1323) 2020-03-11 17:55:39 +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
Dockerfile feat(dockerfile): adding dumb-init to base image (#1278) 2020-02-29 21:55:15 +00:00
LICENSE Add apache license 2015-02-27 09:38:47 +00:00
README.md Update README.md change godoc => go.dev (#1236) 2020-02-22 08:56:42 +00:00
README.zh-cn.md Update README.md change godoc => go.dev (#1236) 2020-02-22 08:56:42 +00:00
_config.yml Set theme jekyll-theme-architect 2019-11-14 11:55:07 +00:00
defaults.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
event.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
function_test.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 regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
go.sum regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
micro.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
options.go Service => Service Auth 2020-03-31 12:44:34 +01:00
service.go Service => Service Auth 2020-03-31 12:44:34 +01:00
service_test.go prune util/log and user logger (#1237) 2020-02-23 13:45:20 +00:00

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.