Go to file
sunfuze 2efb459c66
Fix config watch (#1670)
* add dirty overrite test case

* need version to figure out if config need update or not

* using nanosecond as version for two goroutine can run in same second

* config should check snapshot version when update

* set checksum of ChangeSet

Co-authored-by: Asim Aslam <asim@aslam.me>
2020-06-16 17:10:52 +01:00
.github update PR template, not using gitflow anymore 2020-06-16 17:00:15 +01:00
agent Split long discord output message into the chunks by 2000 characters (#1704) 2020-06-15 22:22:00 +01:00
api Fix regex detection. Fixes #1663 (#1696) 2020-06-12 10:42:52 +01:00
auth fix jwt revoke 2020-06-02 10:26:33 +08:00
broker broker: add publish context (#1590) 2020-04-28 19:29:00 +03:00
client Apply wrappers to gRPC streams (#1675) 2020-06-12 10:42:52 +01:00
codec fix missing pointer 2020-04-14 17:13:38 +01:00
config Fix config watch (#1670) 2020-06-16 17:10:52 +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 make caller filepath package/file style 2020-05-26 14:33:56 +08: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 registry/mdns: fix nil host bug (#1703) 2020-06-15 16:13:45 +01:00
router Strip down router code (#1627) 2020-05-13 16:13:36 +01:00
runtime Fix race condition when updating process being waited on (#1694) 2020-06-12 10:42:52 +01:00
server util/wrapper: Add Static Client wrapper (#1685) 2020-06-12 10:42:52 +01:00
service regenerate all proto based files (#1531) 2020-04-14 16:25:09 +03:00
store Fix race when opening DB for first time (#1691) 2020-06-12 10:42:52 +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 Custom private blocks (#1705) 2020-06-16 17:05:42 +01:00
web Fix web service auth name 2020-05-26 17:43:45 +01: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 (#1695) 2020-06-12 15:07:19 +01:00
_config.yml Set theme jekyll-theme-architect 2019-11-14 11:55:07 +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
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 util/wrapper: Add Static Client wrapper (#1685) 2020-06-05 10:18:35 +01:00
go.sum go modules cleanup and remove wrong self import to v1 (#1658) 2020-05-29 14:32:11 +03: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
service.go Move auth account creation to config/cmd (#1676) 2020-06-03 09:43:20 +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 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.

  • gRPC Transport - gRPC 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. Find plugins in github.com/micro/go-plugins.

Getting Started

To make use of Go Micro

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

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

// initialise flags
service.Init()

// start the service
service.Run()

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

License

Go Micro is Apache 2.0 licensed.