Documentation ¶
Overview ¶
Package http implements a YARPC transport based on the HTTP/1.1 protocol. The HTTP transport provides first class support for Unary RPCs and experimental support for Oneway RPCs.
Usage ¶
An HTTP Transport must be constructed to use this transport.
httpTransport := http.NewTransport()
To serve your YARPC application over HTTP, pass an HTTP inbound in your yarpc.Config.
myInbound := httpTransport.NewInbound(":8080") dispatcher := yarpc.NewDispatcher(yarpc.Config{ Name: "myservice", Inbounds: yarpc.Inbounds{myInbound}, })
To make requests to a YARPC application that supports HTTP, pass an HTTP outbound in your yarpc.Config.
myserviceOutbound := httpTransport.NewSingleOutbound("http://127.0.0.1:8080") dispatcher := yarpc.NewDispatcher(yarpc.Config{ Name: "myclient", Outbounds: yarpc.Outbounds{ "myservice": {Unary: myserviceOutbound}, }, })
Note that stopping an HTTP transport does NOT immediately terminate ongoing requests. Connections will remain open until all clients have disconnected.
Configuration ¶
An HTTP Transport may be configured using YARPC's configuration system. See TransportConfig, InboundConfig, and OutboundConfig for details on the different configuration parameters supported by this transport.
Wire Representation ¶
YARPC requests and responses are sent as plain HTTP requests and responses. YARPC metadata is sent inside reserved HTTP headers. Application headers for requests and responses are sent as HTTP headers with the header names prefixed with a pre-defined string. See Constants for more information on the names of these headers. The request and response bodies are sent as-is in the HTTP request or response body.
See Also ¶
YARPC Properties: https://github.com/yarpc/yarpc/blob/master/properties.md
Index ¶
- Constants
- func TransportSpec(opts ...Option) yarpcconfig.TransportSpec
- type Inbound
- func (i *Inbound) Addr() net.Addr
- func (i *Inbound) Introspect() introspection.InboundStatus
- func (i *Inbound) IsRunning() bool
- func (i *Inbound) SetRouter(router transport.Router)
- func (i *Inbound) Start() error
- func (i *Inbound) Stop() error
- func (i *Inbound) Tracer(tracer opentracing.Tracer) *Inbound
- func (i *Inbound) Transports() []transport.Transport
- type InboundConfig
- type InboundOption
- type Option
- type Outbound
- func (o *Outbound) Call(ctx context.Context, treq *transport.Request) (*transport.Response, error)
- func (o *Outbound) CallOneway(ctx context.Context, treq *transport.Request) (transport.Ack, error)
- func (o *Outbound) Chooser() peer.Chooser
- func (o *Outbound) Introspect() introspection.OutboundStatus
- func (o *Outbound) IsRunning() bool
- func (o *Outbound) Start() error
- func (o *Outbound) Stop() error
- func (o *Outbound) Transports() []transport.Transport
- type OutboundConfig
- type OutboundOption
- type Transport
- func (a *Transport) IsRunning() bool
- func (t *Transport) NewInbound(addr string, opts ...InboundOption) *Inbound
- func (t *Transport) NewOutbound(chooser peer.Chooser, opts ...OutboundOption) *Outbound
- func (t *Transport) NewSingleOutbound(uri string, opts ...OutboundOption) *Outbound
- func (a *Transport) ReleasePeer(pid peer.Identifier, sub peer.Subscriber) error
- func (a *Transport) RetainPeer(pid peer.Identifier, sub peer.Subscriber) (peer.Peer, error)
- func (a *Transport) Start() error
- func (a *Transport) Stop() error
- type TransportConfig
- type TransportOption
Examples ¶
Constants ¶
const ( // Name of the service sending the request. This corresponds to the // Request.Caller attribute. CallerHeader = "Rpc-Caller" // Name of the encoding used for the request body. This corresponds to the // Request.Encoding attribute. EncodingHeader = "Rpc-Encoding" // Amount of time (in milliseconds) within which the request is expected // to finish. TTLMSHeader = "Context-TTL-MS" // Name of the procedure being called. This corresponds to the // Request.Procedure attribute. ProcedureHeader = "Rpc-Procedure" // Name of the service to which the request is being sent. This // corresponds to the Request.Service attribute. ServiceHeader = "Rpc-Service" // Shard key used by the destined service to shard the request. This // corresponds to the Request.ShardKey attribute. ShardKeyHeader = "Rpc-Shard-Key" // The traffic group responsible for handling the request. This // corresponds to the Request.RoutingKey attribute. RoutingKeyHeader = "Rpc-Routing-Key" // A service that can proxy the destined service. This corresponds to the // Request.RoutingDelegate attribute. RoutingDelegateHeader = "Rpc-Routing-Delegate" // Whether the response body contains an application error. ApplicationStatusHeader = "Rpc-Status" // ErrorCodeHeader contains the string representation of the error code. ErrorCodeHeader = "Rpc-Error-Code" // ErrorNameHeader contains the name of a user-defined error. ErrorNameHeader = "Rpc-Error-Name" )
HTTP headers used in requests and responses to send YARPC metadata.
const ( // The request was successful. ApplicationSuccessStatus = "success" // An error occurred. The response body contains an application header. ApplicationErrorStatus = "error" )
Valid values for the Rpc-Status header.
const ApplicationHeaderPrefix = "Rpc-Header-"
ApplicationHeaderPrefix is the prefix added to application header keys to send them in requests or responses.
Variables ¶
This section is empty.
Functions ¶
func TransportSpec ¶ added in v1.9.0
func TransportSpec(opts ...Option) yarpcconfig.TransportSpec
TransportSpec returns a TransportSpec for the HTTP transport.
See TransportConfig, InboundConfig, and OutboundConfig for details on the different configuration parameters supported by this Transport.
Any Transport, Inbound or Outbound option may be passed to this function. These options will be applied BEFORE configuration parameters are interpreted. This allows configuration parameters to override Option provided to TransportSpec.
Types ¶
type Inbound ¶
type Inbound struct {
// contains filtered or unexported fields
}
Inbound receives YARPC requests using an HTTP server. It may be constructed using the NewInbound method on the Transport.
Example ¶
package main import ( "log" "go.uber.org/yarpc" "go.uber.org/yarpc/transport/http" ) func main() { transport := http.NewTransport() inbound := transport.NewInbound(":8888") dispatcher := yarpc.NewDispatcher(yarpc.Config{ Name: "myservice", Inbounds: yarpc.Inbounds{inbound}, }) if err := dispatcher.Start(); err != nil { log.Fatal(err) } defer dispatcher.Stop() }
Output:
func (*Inbound) Addr ¶
Addr returns the address on which the server is listening. Returns nil if Start has not been called yet.
func (*Inbound) Introspect ¶ added in v1.0.0
func (i *Inbound) Introspect() introspection.InboundStatus
Introspect returns the state of the inbound for introspection purposes.
func (*Inbound) IsRunning ¶ added in v1.0.0
IsRunning returns whether the inbound is currently running
func (*Inbound) SetRouter ¶ added in v1.0.0
SetRouter configures a router to handle incoming requests. This satisfies the transport.Inbound interface, and would be called by a dispatcher when it starts.
func (*Inbound) Start ¶ added in v1.0.0
Start starts the inbound with a given service detail, opening a listening socket.
func (*Inbound) Transports ¶ added in v1.0.0
Transports returns the inbound's HTTP transport.
type InboundConfig ¶ added in v1.9.0
type InboundConfig struct { // Address to listen on. This field is required. Address string `config:"address,interpolate"` }
InboundConfig configures an HTTP inbound.
inbounds: http: address: ":80"
type InboundOption ¶
type InboundOption func(*Inbound)
InboundOption customizes the behavior of an HTTP Inbound constructed with NewInbound.
func Mux ¶
func Mux(pattern string, mux *http.ServeMux) InboundOption
Mux specifies that the HTTP server should make the YARPC endpoint available under the given pattern on the given ServeMux. By default, the YARPC service is made available on all paths of the HTTP server. By specifying a ServeMux, users can narrow the endpoints under which the YARPC service is available and offer their own non-YARPC endpoints.
Example ¶
package main import ( "fmt" "log" nethttp "net/http" "os" "go.uber.org/yarpc" "go.uber.org/yarpc/internal/iopool" "go.uber.org/yarpc/transport/http" ) func main() { // import nethttp "net/http" // We set up a ServeMux which provides a /health endpoint. mux := nethttp.NewServeMux() mux.HandleFunc("/health", func(w nethttp.ResponseWriter, _ *nethttp.Request) { if _, err := fmt.Fprintln(w, "hello from /health"); err != nil { panic(err) } }) // This inbound will serve the YARPC service on the path /yarpc. The // /health endpoint on the Mux will be left alone. transport := http.NewTransport() inbound := transport.NewInbound(":8888", http.Mux("/yarpc", mux)) // Fire up a dispatcher with the new inbound. dispatcher := yarpc.NewDispatcher(yarpc.Config{ Name: "server", Inbounds: yarpc.Inbounds{inbound}, }) if err := dispatcher.Start(); err != nil { log.Fatal(err) } defer dispatcher.Stop() // Make a request to the /health endpoint. res, err := nethttp.Get("http://127.0.0.1:8888/health") if err != nil { log.Fatal(err) } defer res.Body.Close() if _, err := iopool.Copy(os.Stdout, res.Body); err != nil { log.Fatal(err) } }
Output: hello from /health
type Option ¶ added in v1.8.0
type Option interface {
// contains filtered or unexported methods
}
Option allows customizing the YARPC HTTP transport. Any InboundOption, OutboundOption, or TransportOption is a valid Option.
type Outbound ¶ added in v0.4.0
type Outbound struct {
// contains filtered or unexported fields
}
Outbound sends YARPC requests over HTTP. It may be constructed using the NewOutbound function or the NewOutbound or NewSingleOutbound methods on the HTTP Transport. It is recommended that services use a single HTTP transport to construct all HTTP outbounds, ensuring efficient sharing of resources across the different outbounds.
Example ¶
package main import ( "go.uber.org/yarpc" "go.uber.org/yarpc/transport/http" ) func main() { transport := http.NewTransport() yarpc.NewDispatcher(yarpc.Config{ Name: "myservice", Outbounds: yarpc.Outbounds{ "myservice": { Unary: transport.NewSingleOutbound("http://127.0.0.1:8888"), }, "anotherservice": { Unary: transport.NewSingleOutbound("http://127.0.0.1:9999"), }, }, }) }
Output:
func NewOutbound ¶
func NewOutbound(chooser peer.Chooser, opts ...OutboundOption) *Outbound
NewOutbound builds an HTTP outbound that sends requests to peers supplied by the given peer.Chooser. The URL template for used for the different peers may be customized using the URLTemplate option.
The peer chooser and outbound must share the same transport, in this case the HTTP transport. The peer chooser must use the transport's RetainPeer to obtain peer instances and return those peers to the outbound when it calls Choose. The concrete peer type is private and intrinsic to the HTTP transport.
func (*Outbound) CallOneway ¶ added in v0.4.0
CallOneway makes a oneway request
func (*Outbound) Introspect ¶ added in v1.0.0
func (o *Outbound) Introspect() introspection.OutboundStatus
Introspect returns basic status about this outbound.
func (*Outbound) Transports ¶ added in v1.0.0
Transports returns the outbound's HTTP transport.
type OutboundConfig ¶ added in v1.9.0
type OutboundConfig struct { yarpcconfig.PeerChooser // URL to which requests will be sent for this outbound. This field is // required. URL string `config:"url,interpolate"` // HTTP headers that will be added to all requests made through this // outbound. // // http: // url: "http://localhost:8080/yarpc" // addHeaders: // X-Caller: myserice // X-Token: foo AddHeaders map[string]string `config:"addHeaders"` }
OutboundConfig configures an HTTP outbound.
outbounds: keyvalueservice: http: url: "http://127.0.0.1:80/"
The HTTP outbound supports both, Unary and Oneway transport types. To use it for only one of these, nest the section inside a "unary" or "onewy" section.
outbounds: keyvalueservice: unary: http: url: "http://127.0.0.1:80/"
An HTTP outbound can also configure a peer list. In this case, there can still be a "url" and it serves as a template for the HTTP client, expressing whether to use "http:" or "https:" and what path to use. The address gets replaced with peers from the peer list.
outbounds: keyvalueservice: unary: http: url: "https://address/rpc" round-robin: peers: - 127.0.0.1:8080 - 127.0.0.1:8081
type OutboundOption ¶
type OutboundOption func(*Outbound)
OutboundOption customizes an HTTP Outbound.
func AddHeader ¶ added in v1.8.0
func AddHeader(key, value string) OutboundOption
AddHeader specifies that an HTTP outbound should always include the given header in outgoung requests.
httpTransport.NewOutbound(chooser, http.AddHeader("X-Token", "TOKEN"))
Note that headers starting with "Rpc-" are reserved by YARPC. This function will panic if the header starts with "Rpc-".
func URLTemplate ¶ added in v1.0.0
func URLTemplate(template string) OutboundOption
URLTemplate specifies the URL this outbound makes requests to. For peer.Chooser-based outbounds, the peer (host:port) spection of the URL may vary from call to call but the rest will remain unchanged. For single-peer outbounds, the URL will be used as-is.
type Transport ¶ added in v1.0.0
type Transport struct {
// contains filtered or unexported fields
}
Transport keeps track of HTTP peers and the associated HTTP client. It allows using a single HTTP client to make requests to multiple YARPC services and pooling the resources needed therein.
func NewTransport ¶ added in v1.0.0
func NewTransport(opts ...TransportOption) *Transport
NewTransport creates a new HTTP transport for managing peers and sending requests
func (*Transport) IsRunning ¶ added in v1.0.0
IsRunning returns whether the HTTP transport is running.
func (*Transport) NewInbound ¶ added in v1.0.0
func (t *Transport) NewInbound(addr string, opts ...InboundOption) *Inbound
NewInbound builds a new HTTP inbound that listens on the given address and sharing this transport.
func (*Transport) NewOutbound ¶ added in v1.0.0
func (t *Transport) NewOutbound(chooser peer.Chooser, opts ...OutboundOption) *Outbound
NewOutbound builds an HTTP outbound that sends requests to peers supplied by the given peer.Chooser. The URL template for used for the different peers may be customized using the URLTemplate option.
The peer chooser and outbound must share the same transport, in this case the HTTP transport. The peer chooser must use the transport's RetainPeer to obtain peer instances and return those peers to the outbound when it calls Choose. The concrete peer type is private and intrinsic to the HTTP transport.
func (*Transport) NewSingleOutbound ¶ added in v1.0.0
func (t *Transport) NewSingleOutbound(uri string, opts ...OutboundOption) *Outbound
NewSingleOutbound builds an outbound that sends YARPC requests over HTTP to the specified URL.
The URLTemplate option has no effect in this form.
func (*Transport) ReleasePeer ¶ added in v1.0.0
func (a *Transport) ReleasePeer(pid peer.Identifier, sub peer.Subscriber) error
ReleasePeer releases a peer from the peer.Subscriber and removes that peer from the Transport if nothing is listening to it
func (*Transport) RetainPeer ¶ added in v1.0.0
func (a *Transport) RetainPeer(pid peer.Identifier, sub peer.Subscriber) (peer.Peer, error)
RetainPeer gets or creates a Peer for the specified peer.Subscriber (usually a peer.Chooser)
type TransportConfig ¶ added in v1.9.0
type TransportConfig struct { // Specifies the keep-alive period for all HTTP clients. This field is // optional. KeepAlive time.Duration `config:"keepAlive"` MaxIdleConnsPerHost int `config:"maxIdleConnsPerHost"` ConnTimeout time.Duration `config:"connTimeout"` ConnBackoff yarpcconfig.Backoff `config:"connBackoff"` }
TransportConfig configures the shared HTTP Transport. This is shared between all HTTP outbounds and inbounds of a Dispatcher.
transports: http: keepAlive: 30s maxIdleConnsPerHost: 2 connTimeout: 500ms connBackoff: exponential: first: 10ms max: 30s
All parameters of TransportConfig are optional. This section may be omitted in the transports section.
type TransportOption ¶ added in v1.0.0
type TransportOption func(*transportOptions)
TransportOption customizes the behavior of an HTTP transport.
func ConnBackoff ¶ added in v1.10.0
func ConnBackoff(s backoffapi.Strategy) TransportOption
ConnBackoff specifies the connection backoff strategy for delays between connection attempts for each peer.
The default is exponential backoff starting with 10ms fully jittered, doubling each attempt, with a maximum interval of 30s.
func ConnTimeout ¶ added in v1.10.0
func ConnTimeout(d time.Duration) TransportOption
ConnTimeout is the time that the transport will wait for a connection attempt. If a peer has been retained by a peer list, connection attempts are performed in a goroutine off the request path.
The default is half a second.
func KeepAlive ¶
func KeepAlive(t time.Duration) TransportOption
KeepAlive specifies the keep-alive period for the network connection. If zero, keep-alives are disabled.
Defaults to 30 seconds.
func MaxIdleConnsPerHost ¶ added in v1.6.0
func MaxIdleConnsPerHost(i int) TransportOption
MaxIdleConnsPerHost specifies the number of idle (keep-alive) HTTP connections that will be maintained per host. Existing idle connections will be used instead of creating new HTTP connections.
Defaults to 2 connections.
func Tracer ¶ added in v1.0.0
func Tracer(tracer opentracing.Tracer) TransportOption
Tracer configures a tracer for the transport and all its inbounds and outbounds.