1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-06 08:16:03 +02:00
go-micro/plugins
Johnson C 212df8e6c3
support etcd auth with env args (#2184)
* support etcd auth with env args
set default registry address with env arg instead of 127.0.0.1

* fixing MICRO_REGISTRY_ADDRESS may empty issue
2021-06-23 07:45:01 +01:00
..
.github add all the plugins 2020-12-26 15:32:45 +00:00
.travis add all the plugins 2020-12-26 15:32:45 +00:00
acme/certmagic update v3 plugins (#2105) 2021-01-20 21:01:10 +00:00
auth/jwt update v3 plugins (#2105) 2021-01-20 21:01:10 +00:00
broker add rmq message properties (#2177) 2021-06-08 10:34:47 +01:00
client fix 404 bug (#2179) 2021-06-16 07:56:41 +01:00
codec update v3 plugins (#2105) 2021-01-20 21:01:10 +00:00
config Add registry and config/source plugins based on nacos/v2 (#2182) 2021-06-18 14:23:03 +01:00
logger Windows event log plugin (#2180) 2021-06-20 09:28:30 +01:00
proxy/http update plugins version & remove replace (#2118) 2021-02-05 09:09:25 +00:00
registry support etcd auth with env args (#2184) 2021-06-23 07:45:01 +01:00
selector update plugins version & remove replace (#2118) 2021-02-05 09:09:25 +00:00
server fix undefined: err (#2181) 2021-06-17 11:11:38 +01:00
store update v3 plugins (#2105) 2021-01-20 21:01:10 +00:00
sync update v3 plugins (#2105) 2021-01-20 21:01:10 +00:00
transport update quic go mod 2021-02-26 08:14:11 +00:00
wrapper support hystrix fallback (#2183) 2021-06-20 09:28:15 +01:00
.gitignore add all the plugins 2020-12-26 15:32:45 +00:00
.golangci.yml add all the plugins 2020-12-26 15:32:45 +00:00
cleanup.sh update v3 plugins (#2105) 2021-01-20 21:01:10 +00:00
LICENSE add all the plugins 2020-12-26 15:32:45 +00:00
plugin.go v3 (#2104) 2021-01-20 13:54:31 +00:00
README.md Update README.md 2021-06-09 10:31:10 +01:00
release.sh add all the plugins 2020-12-26 15:32:45 +00:00
template.go v3 (#2104) 2021-01-20 13:54:31 +00:00

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/v3"
	_ "github.com/asim/go-micro/plugins/registry/kubernetes/v3"
	_ "github.com/asim/go-micro/plugins/transport/nats/v3"
)

Create your service and ensure you call service.Init

package main

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

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 (
	"github.com/asim/go-micro/v3"
	"github.com/asim/go-micro/plugins/registry/kubernetes/v3"
)

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/v3"
	_ "github.com/asim/go-micro/plugins/registry/kubernetes/v3"
	_ "github.com/asim/go-micro/plugins/transport/nats/v3"
)

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