2020-05-17 14:39:20 +03:00
|
|
|
# Go Micro [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Go.Dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat-square)](https://pkg.go.dev/github.com/micro/go-micro?tab=doc) [![Travis CI](https://api.travis-ci.org/micro/go-micro.svg?branch=master)](https://travis-ci.org/micro/go-micro) [![Go Report Card](https://goreportcard.com/badge/micro/go-micro)](https://goreportcard.com/report/github.com/micro/go-micro) <a href="https://slack.micro.mu"><img src="https://img.shields.io/badge/join-us%20on%20slack-gray.svg?longCache=true&logo=slack&colorB=brightgreen" alt="Slack Widget"></a>
|
2015-01-14 02:31:27 +03:00
|
|
|
|
2020-04-14 00:15:21 +03:00
|
|
|
Go Micro is a framework for distributed systems development.
|
2016-06-20 04:52:38 +03:00
|
|
|
|
2018-11-27 22:43:57 +03:00
|
|
|
## Overview
|
|
|
|
|
|
|
|
Go Micro provides the core requirements for distributed systems development including RPC and Event driven communication.
|
2020-05-23 18:46:50 +03:00
|
|
|
The **Micro** philosophy is sane defaults with a pluggable architecture. We provide defaults to get you started quickly
|
2018-11-27 22:43:57 +03:00
|
|
|
but everything can be easily swapped out.
|
|
|
|
|
2019-01-29 12:08:14 +03:00
|
|
|
<img src="https://micro.mu/docs/images/go-micro.svg" />
|
2018-11-29 12:02:15 +03:00
|
|
|
|
2018-03-19 13:21:46 +03:00
|
|
|
Plugins are available at [github.com/micro/go-plugins](https://github.com/micro/go-plugins).
|
2015-01-14 11:38:39 +03:00
|
|
|
|
2020-05-23 18:47:23 +03:00
|
|
|
Follow us on [Twitter](https://twitter.com/microhq) or join the [Community](https://slack.micro.mu).
|
2016-12-25 23:53:08 +03:00
|
|
|
|
2016-12-07 19:54:19 +03:00
|
|
|
## Features
|
2016-07-03 04:49:13 +03:00
|
|
|
|
2017-06-15 21:57:27 +03:00
|
|
|
Go Micro abstracts away the details of distributed systems. Here are the main features.
|
2016-07-03 04:49:13 +03:00
|
|
|
|
2018-12-02 16:23:46 +03:00
|
|
|
- **Service Discovery** - Automatic service registration and name resolution. Service discovery is at the core of micro service
|
2019-01-16 16:12:21 +03:00
|
|
|
development. When service A needs to speak to service B it needs the location of that service. The default discovery mechanism is
|
2019-11-07 01:04:02 +03:00
|
|
|
multicast DNS (mdns), a zeroconf system.
|
2018-12-02 16:23:46 +03:00
|
|
|
|
|
|
|
- **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
|
2018-12-26 15:03:08 +03:00
|
|
|
and server handle this by default. This includes protobuf and json by default.
|
2018-12-02 16:23:46 +03:00
|
|
|
|
2019-02-09 15:25:34 +03:00
|
|
|
- **Request/Response** - RPC based request/response with support for bidirectional streaming. We provide an abstraction for synchronous
|
2018-12-02 16:23:46 +03:00
|
|
|
communication. A request made to a service will be automatically resolved, load balanced, dialled and streamed. The default
|
2020-01-19 16:51:31 +03:00
|
|
|
transport is [gRPC](https://grpc.io/).
|
2018-12-02 16:23:46 +03:00
|
|
|
|
|
|
|
- **Async Messaging** - PubSub is built in as a first class citizen for asynchronous communication and event driven architectures.
|
2020-04-11 20:23:37 +03:00
|
|
|
Event notifications are a core pattern in micro service development. The default messaging system is a HTTP event message broker.
|
2018-11-27 22:43:57 +03:00
|
|
|
|
2018-12-02 16:26:38 +03:00
|
|
|
- **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](https://github.com/micro/go-plugins).
|
|
|
|
|
2018-11-14 18:18:13 +03:00
|
|
|
## Getting Started
|
2017-02-10 15:36:42 +03:00
|
|
|
|
2020-04-19 02:44:52 +03:00
|
|
|
To make use of Go Micro
|
|
|
|
|
2020-04-19 02:45:29 +03:00
|
|
|
```golang
|
2020-04-19 02:44:52 +03:00
|
|
|
import "github.com/micro/go-micro/v2"
|
|
|
|
```
|
|
|
|
|
2019-11-09 18:37:30 +03:00
|
|
|
See the [docs](https://micro.mu/docs/framework.html) for detailed information on the architecture, installation and use of go-micro.
|
2020-04-19 02:46:33 +03:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
2020-04-28 21:35:13 +03:00
|
|
|
Go Micro is Apache 2.0 licensed.
|
2020-04-19 02:46:33 +03:00
|
|
|
|