Micro Plugins

micro 插件。「Plugins for micro」

Github星跟蹤圖

Plugins License GoDoc Travis CI Go Report Card

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.

Read the docs to learn more about how to use them.

Follow us on Twitter or join the Slack community.

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

Create your service and ensure you call service.Init

package main

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

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

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

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

Contributions

A few contributions by others, Feature, Description, Author, ----------------------------------------------------------------------------------------, ----------------------------------------, ----------------------------------------------, Registry/Kubernetes, Service discovery via the Kubernetes API, @nickjackson, Registry/Zookeeper, Service discovery using Zookeeper, @HeavyHorst

主要指標

概覽
名稱與所有者micro/go-plugins
主編程語言TypeScript
編程語言Go (語言數: 7)
平台
許可證GNU Affero General Public License v3.0
所有者活动
創建於2015-10-29 22:09:42
推送於2024-01-19 09:54:33
最后一次提交2024-01-18 09:38:18
發布數128
最新版本名稱v6.0.3 (發布於 2024-01-18 09:38:18)
第一版名稱v0.0.1-alpha (發布於 2018-01-15 10:55:04)
用户参与
星數12.4k
關注者數304
派生數1.4k
提交數12.6k
已啟用問題?
問題數4935
打開的問題數533
拉請求數928
打開的拉請求數8
關閉的拉請求數250
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?