1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-12 08:23:58 +02:00
go-micro/plugins
Thomas Chandelle 87c96bc4d0
Correctly check error on redis command XTRIM (#2518)
Also:
 - add comment about version requirement
 - move minID to var for code readability
2022-06-30 18:24:27 +08:00
..
.github
.travis
acme/certmagic upgrade to go 1.17 (#2346) 2021-11-11 14:03:34 +00:00
auth/jwt style:arrays pre-allocation (#2449) 2022-03-14 14:03:14 +08:00
broker remove unused variable in loop (#2495) 2022-05-03 11:06:13 +08:00
cache/redis feat: redis implementation of cache (#2513) 2022-06-21 20:05:00 +01:00
client typo siza #2429 (#2515) 2022-06-24 19:18:47 +01:00
codec upgrade to go 1.17 (#2346) 2021-11-11 14:03:34 +00:00
config typo fix; (#2480) 2022-04-15 09:55:30 +08:00
events Correctly check error on redis command XTRIM (#2518) 2022-06-30 18:24:27 +08:00
logger upgrade to go 1.17 (#2346) 2021-11-11 14:03:34 +00:00
proxy/http upgrade to go 1.17 (#2346) 2021-11-11 14:03:34 +00:00
registry fix context value nil (#2391) 2021-12-20 16:31:48 +08:00
selector upgrade to go 1.17 (#2346) 2021-11-11 14:03:34 +00:00
server [fix] fixing f.IsExported undefined issue (#2382) 2021-12-07 17:30:48 +08:00
store upgrade to go 1.17 (#2346) 2021-11-11 14:03:34 +00:00
sync Add Wait option support for sync/etcd plugins (#2459) 2022-03-25 10:28:19 +08:00
transport upgrade to go 1.17 (#2346) 2021-11-11 14:03:34 +00:00
wrapper upgrade to go 1.17 (#2346) 2021-11-11 14:03:34 +00:00
.gitignore
.golangci.yml
cleanup.sh update 2021-10-13 13:31:23 +01:00
LICENSE
plugin.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
README.md update 2021-10-13 13:31:23 +01:00
release.bat 1. use default memory registry in grpc plugins (#2317) 2021-10-22 22:30:28 +08:00
release.sh Plugins (#2311) 2021-10-16 05:56:51 +01:00
template.go

Plugins License GoDoc

Go plugins is a place for community maintained plugins.

Overview

Micro tooling is built on a powerful pluggable architecture. Plugins can be swapped out with zero code changes. This repository contains plugins for all micro related tools. Read on for further info.

Getting Started

Contents

Contents of this repository:

Directory Description
Broker PubSub messaging; NATS, NSQ, RabbitMQ, Kafka
Client RPC Clients; gRPC, HTTP
Codec Message Encoding; BSON, Mercury
Micro Micro Toolkit Plugins
Registry Service Discovery; Etcd, Gossip, NATS
Selector Load balancing; Label, Cache, Static
Server RPC Servers; gRPC, HTTP
Transport Bidirectional Streaming; NATS, RabbitMQ
Wrapper Middleware; Circuit Breakers, Rate Limiting, Tracing, Monitoring

Usage

Plugins can be added to go-micro in the following ways. By doing so they'll be available to set via command line args or environment variables.

Import the plugins in a plugins.go file

package main

import (
	_ "github.com/asim/go-micro/plugins/broker/rabbitmq/v4"
	_ "github.com/asim/go-micro/plugins/registry/kubernetes/v4"
	_ "github.com/asim/go-micro/plugins/transport/nats/v4"
)

Create your service and ensure you call service.Init

package main

import (
	"go-micro.dev/v4"
)

func main() {
	service := micro.NewService(
		// Set service name
		micro.Name("my.service"),
	)

	// Parse CLI flags
	service.Init()
}

Build your service

go build -o service ./main.go ./plugins.go

Env

Use environment variables to set the

MICRO_BROKER=rabbitmq \
MICRO_REGISTRY=kubernetes \ 
MICRO_TRANSPORT=nats \ 
./service

Flags

Or use command line flags to enable them

./service --broker=rabbitmq --registry=kubernetes --transport=nats

Options

Import and set as options when creating a new service

import (
	"go-micro.dev/v4"
	"github.com/asim/go-micro/plugins/registry/kubernetes/v4"
)

func main() {
	registry := kubernetes.NewRegistry() //a default to using env vars for master API

	service := micro.NewService(
		// Set service name
		micro.Name("my.service"),
		// Set service registry
		micro.Registry(registry),
	)
}

Build

An anti-pattern is modifying the main.go file to include plugins. Best practice recommendation is to include plugins in a separate file and rebuild with it included. This allows for automation of building plugins and clean separation of concerns.

Create file plugins.go

package main

import (
	_ "github.com/asim/go-micro/plugins/broker/rabbitmq/v4"
	_ "github.com/asim/go-micro/plugins/registry/kubernetes/v4"
	_ "github.com/asim/go-micro/plugins/transport/nats/v4"
)

Build with plugins.go

go build -o service main.go plugins.go

Run with plugins

MICRO_BROKER=rabbitmq \
MICRO_REGISTRY=kubernetes \
MICRO_TRANSPORT=nats \
service