1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-30 08:06:40 +02:00
A Go microservices framework
Go to file
Niek den Breeje e23006b1a5
Generate Gomu files after the fact (#2258)
* Move file generation to new package

* Use text/template instead of html/template

* Make config variables more consistent

* Combine generate files and print comments there

* Add gomu generate command

* Refactor project templating to file library

* Determine client earlier
2021-09-10 13:20:57 +01:00
.github Delete docker.yml 2021-02-02 14:58:19 +00:00
api update etcd version (#2186) 2021-06-29 13:40:54 +01:00
auth improve code quality (#2128) 2021-02-25 08:30:35 +00:00
broker v3 (#2104) 2021-01-20 13:54:31 +00:00
cache Add simple in-memory cache (#2231) 2021-08-31 15:31:16 +01:00
client make rpcClient compatible with 32bit arm systems (#2156) 2021-04-25 06:54:00 +01:00
cmd Generate Gomu files after the fact (#2258) 2021-09-10 13:20:57 +01:00
codec fix code proto return invalid message (#2196) 2021-07-26 06:25:21 +01:00
config Move from micro/cli/v2 to urfave/cli/v2 (#2224) 2021-08-31 09:05:08 +01:00
debug fixing mem.pprof issue: (#2198) 2021-08-04 09:39:01 +01:00
errors regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
examples Add cache example (#2232) 2021-09-01 10:08:43 +01:00
logger fix service default logger (#2171) 2021-05-23 08:38:20 +01:00
metadata add metadata set 2020-04-12 11:17:23 +01:00
plugins Fix client gRPC plugin (#2245) 2021-09-03 14:16:56 +01:00
registry v3 (#2104) 2021-01-20 13:54:31 +00:00
runtime improve code quality (#2128) 2021-02-25 08:30:35 +00:00
selector fix: "Solve the problem that the resources have not been fully released due to early exit" (#2168) 2021-05-17 08:16:52 +01:00
server fix service default logger (#2171) 2021-05-23 08:38:20 +01:00
store fix store delete 2021-02-10 07:14:49 +00:00
sync refactor all the things 2020-12-29 15:49:26 +00:00
transport remove network package 2021-02-26 08:13:12 +00:00
util Add AuthCall wrapper func (#2250) 2021-09-07 07:13:56 +01:00
web Move from micro/cli/v2 to urfave/cli/v2 (#2224) 2021-08-31 09:05:08 +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
event.go v3 (#2104) 2021-01-20 13:54:31 +00:00
function_test.go v3 (#2104) 2021-01-20 13:54:31 +00:00
function.go v3 (#2104) 2021-01-20 13:54:31 +00:00
generate.go regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
go.mod Move from micro/cli/v2 to urfave/cli/v2 (#2224) 2021-08-31 09:05:08 +01:00
go.sum Move from micro/cli/v2 to urfave/cli/v2 (#2224) 2021-08-31 09:05:08 +01:00
LICENSE Add apache license 2015-02-27 09:38:47 +00:00
micro.go fix service default logger (#2171) 2021-05-23 08:38:20 +01:00
options.go Add simple in-memory cache (#2231) 2021-08-31 15:31:16 +01:00
README.md Update README.md 2021-08-31 09:27:36 +01:00
service_test.go v3 (#2104) 2021-01-20 13:54:31 +00:00
service.go Exit when help flag is provided on service run (#2225) 2021-08-31 09:13:35 +01:00

Go Micro License Go.Dev reference

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.

Features

Go Micro abstracts away the details of distributed systems. Here are the main features.

  • Authentication - Auth is built in as a first class citizen. Authentication and authorization enable secure zero trust networking by providing every service an identity and certificates. This additionally includes rule based access control.

  • Dynamic Config - Load and hot reload dynamic config from anywhere. The config interface provides a way to load application level config from any source such as env vars, file, etcd. You can merge the sources and even define fallbacks.

  • Data Storage - A simple data store interface to read, write and delete records. It includes support for memory, file and CockroachDB by default. State and persistence becomes a core requirement beyond prototyping and Micro looks to build that into the framework.

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

  • RPC Client/Server - 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.

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

  • Synchronization - Distributed systems are often built in an eventually consistent manner. Support for distributed locking and leadership are built in as a Sync interface. When using an eventually consistent database or scheduling use the Sync interface.

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

Getting Started

To make use of Go Micro

import "github.com/asim/go-micro/v3"

// create a new service
service := micro.NewService(
    micro.Name("helloworld"),
)

// initialise flags
service.Init()

// start the service
service.Run()

See the examples for detailed information on usage.

Command Line Interface

See cmd/gomu for the command line interface.

Code Generation

See cmd/protoc-gen-micro for protobuf code generation.

Example Usage

See examples directory for usage examples.

Plugins

See plugins directory for all the plugins.

License

Go Micro is Apache 2.0 licensed.