package benchmark
import "google.golang.org/grpc/benchmark"
Package benchmark implements the building blocks to setup end-to-end gRPC benchmarks.
Index ¶
- func AddOne(features []int, featuresMaxPosition []int)
- func DoByteBufStreamingRoundTrip(stream testpb.BenchmarkService_StreamingCallClient, reqSize, respSize int) error
- func DoStreamingRoundTrip(stream testpb.BenchmarkService_StreamingCallClient, reqSize, respSize int) error
- func DoUnaryCall(tc testpb.BenchmarkServiceClient, reqSize, respSize int) error
- func NewClientConn(addr string, opts ...grpc.DialOption) *grpc.ClientConn
- func StartServer(info ServerInfo, opts ...grpc.ServerOption) func()
- type ServerInfo
Functions ¶
func AddOne ¶
AddOne add 1 to the features slice
func DoByteBufStreamingRoundTrip ¶
func DoByteBufStreamingRoundTrip(stream testpb.BenchmarkService_StreamingCallClient, reqSize, respSize int) error
DoByteBufStreamingRoundTrip performs a round trip for a single streaming rpc, using a custom codec for byte buffer.
func DoStreamingRoundTrip ¶
func DoStreamingRoundTrip(stream testpb.BenchmarkService_StreamingCallClient, reqSize, respSize int) error
DoStreamingRoundTrip performs a round trip for a single streaming rpc.
func DoUnaryCall ¶
func DoUnaryCall(tc testpb.BenchmarkServiceClient, reqSize, respSize int) error
DoUnaryCall performs an unary RPC with given stub and request and response sizes.
func NewClientConn ¶
func NewClientConn(addr string, opts ...grpc.DialOption) *grpc.ClientConn
NewClientConn creates a gRPC client connection to addr.
func StartServer ¶
func StartServer(info ServerInfo, opts ...grpc.ServerOption) func()
StartServer starts a gRPC server serving a benchmark service according to info. It returns a function to stop the server.
Types ¶
type ServerInfo ¶
type ServerInfo struct { // Type is the type of the server. // It should be "protobuf" or "bytebuf". Type string // Metadata is an optional configuration. // For "protobuf", it's ignored. // For "bytebuf", it should be an int representing response size. Metadata interface{} // Listener is the network listener for the server to use Listener net.Listener }
ServerInfo contains the information to create a gRPC benchmark server.
Source Files ¶
benchmark.go
Directories ¶
Path | Synopsis |
---|---|
benchmark/benchmain | Package main provides benchmark with setting flags. |
benchmark/benchresult | To format the benchmark result: |
benchmark/client | |
benchmark/grpc_testing | Package grpc_testing is a generated protocol buffer package. |
benchmark/latency | Package latency provides wrappers for net.Conn, net.Listener, and net.Dialers, designed to interoperate to inject real-world latency into network connections. |
benchmark/primitives | |
benchmark/server | |
benchmark/stats | |
benchmark/worker |
- Version
- v1.11.0
- Published
- Mar 27, 2018
- Platform
- js/wasm
- Imports
- 12 packages
- Last checked
- 8 minutes ago –
Tools for package owners.