1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
A Go microservices framework
Go to file
2022-03-14 14:03:14 +08:00
.github add events package (#2341) 2021-11-08 08:52:39 +00:00
api Merge branch 'master' of ssh://github.com/asim/go-micro 2022-01-03 11:21:29 +00:00
auth improve code quality (#2128) 2021-02-25 08:30:35 +00:00
broker add events package (#2341) 2021-11-08 08:52:39 +00:00
cache use read lock and unlock instead of write ones (#2410) 2022-01-09 10:20:08 +00:00
client default the content type to json (#2412) 2022-01-11 13:36:20 +00:00
cmd Support for -micro_out=module=<module_prefix> for protoc-gen-micro (#2435) 2022-02-23 13:14:50 +08:00
codec add events package (#2341) 2021-11-08 08:52:39 +00:00
config add events package (#2341) 2021-11-08 08:52:39 +00:00
debug add events package (#2341) 2021-11-08 08:52:39 +00:00
errors add events package (#2341) 2021-11-08 08:52:39 +00:00
events add events package (#2341) 2021-11-08 08:52:39 +00:00
examples feat: delete redundant lines (#2364) 2021-11-24 17:41:54 +00:00
logger go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
metadata add metadata set 2020-04-12 11:17:23 +01:00
plugins style:arrays pre-allocation (#2449) 2022-03-14 14:03:14 +08:00
registry add events package (#2341) 2021-11-08 08:52:39 +00:00
runtime add events package (#2341) 2021-11-08 08:52:39 +00:00
selector go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
server [fix] fixing f.IsExported undefined issue (#2382) 2021-12-07 17:30:48 +08:00
services add new services 2022-02-16 08:43:36 +00:00
store add events package (#2341) 2021-11-08 08:52:39 +00:00
sync add tls option for sync etcd plugin (#2440) 2022-02-24 17:07:14 +08:00
transport [fix] http transport deadlock (#2441) 2022-02-24 09:32:09 +00:00
util add events package (#2341) 2021-11-08 08:52:39 +00:00
web add events package (#2341) 2021-11-08 08:52:39 +00: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
CHANGELOG.md [FEATURE] add changelog (#2400) 2021-12-29 11:01:40 +08:00
event.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
function_test.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
function.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
generate.go regenerate all proto (#1440) 2020-03-30 21:58:32 +01:00
go-micro.png Add files via upload 2022-01-15 20:26:27 +00:00
go.mod move the api client 2022-01-03 11:21:20 +00:00
go.sum move the api client 2022-01-03 11:21:20 +00:00
LICENSE Add apache license 2015-02-27 09:38:47 +00:00
micro.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
options.go add events package (#2341) 2021-11-08 08:52:39 +00:00
README.md Update README.md 2022-01-17 13:35:01 +00:00
service_test.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
service.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +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 Go 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.

  • Event Streaming - PubSub is great for async notifications but for more advanced use cases event streaming is preferred. Offering persistent storage, consuming from offsets and acking. Go Micro includes support for NATS Jetstream and Redis streams.

  • 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 "go-micro.dev/v4"

// 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/micro for the command line interface.

Code Generation

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

Dashboard

See cmd/dashboard for go micro dashboard.

Example Usage

See examples directory for usage examples.

Plugins

See plugins directory for all the plugins.

Services

See services directory for third party services.

Changelogs

See CHANGELOG.md for release history.

License

Go Micro is Apache 2.0 licensed.