Go to file
Vasiliy Tolstov f349c7723f minimize allocations (#1472)
* server: minimize allocations on re-register

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* server: stop old instance before Init()

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* client/grpc: fix allocations in protobuf marshal

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* codec/json: fix allocations in protobuf marshal

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* remove stop from init

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* codec/grpc: expose MaxMessageSize

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* codec: use buffer pool

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* metadata: minimize reallocations

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* util/wrapper: use metadata helper

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* registry/cache: move logs to debug level

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* server: move logs to debug level

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* server: cache service only when Advertise is ip addr

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* server: use metadata.Copy

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-09-20 15:11:09 +03:00
proto regenerate all proto (#1440) 2020-09-20 15:11:09 +03:00
codec.go api: add static router and improve path parser in rpc handler (#1437) 2020-09-20 15:11:09 +03:00
context.go fixes for safe conversation and avoid panics (#1213) 2020-09-20 15:11:08 +03:00
error.go fix import paths for v2 release 2020-09-20 15:11:08 +03:00
extractor_test.go fix import paths for v2 release 2020-09-20 15:11:08 +03:00
extractor.go fix import paths for v2 release 2020-09-20 15:11:08 +03:00
grpc_test.go various fixes (#1267) 2020-09-20 15:11:09 +03:00
grpc.go minimize allocations (#1472) 2020-09-20 15:11:09 +03:00
handler.go fix import paths for v2 release 2020-09-20 15:11:08 +03:00
options.go Fix nil grpc server auth bug 2020-09-20 15:11:09 +03:00
README.md Further consolidate the libraries 2020-09-20 15:11:08 +03:00
request.go fix import paths for v2 release 2020-09-20 15:11:08 +03:00
response.go fix import paths for v2 release 2020-09-20 15:11:08 +03:00
server.go minimize allocations in logger and tunnel code (#1323) 2020-09-20 15:11:09 +03:00
stream.go fix import paths for v2 release 2020-09-20 15:11:08 +03:00
subscriber.go minimize allocations in logger and tunnel code (#1323) 2020-09-20 15:11:09 +03:00
util.go grpc client/server fixes (#1355) 2020-09-20 15:11:09 +03:00

GRPC Server

The grpc server is a micro.Server compatible server.

Overview

The server makes use of the google.golang.org/grpc framework for the underlying server but continues to use micro handler signatures and protoc-gen-micro generated code.

Usage

Specify the server to your micro service

import (
        "github.com/micro/go-micro"
        "github.com/micro/go-plugins/server/grpc"
)

func main() {
        service := micro.NewService(
                // This needs to be first as it replaces the underlying server
                // which causes any configuration set before it
                // to be discarded
                micro.Server(grpc.NewServer()),
                micro.Name("greeter"),
        )
}

NOTE: Setting the gRPC server and/or client causes the underlying the server/client to be replaced which causes any previous configuration set on that server/client to be discarded. It is therefore recommended to set gRPC server/client before any other configuration