-
Notifications
You must be signed in to change notification settings - Fork 546
Request Response Framework
Pegasus's request/response framework, often called R2, includes abstractions for REST and RPC requests and responses, filter chains for customized processing, and transport abstraction.
R2 is intended to be used in conjunction with Dynamic Discovery, often called D2, system. The combined stack can be referred to as "R2D2".
The R2 framework in rest.li contains a filter chain layer. Essentially, allows developers to process and modify a the content, the associated wire attributes, and the local attributes for each request/response.
To implement a filter, simply implement the relevant Filter interface (for REST, this is RestFilter; for RPC, use RpcFilter).
To use a filter, instantiate a rest.li server/client with a FilterChain that contains the filters you want to use in the order that you would like to use them in. Note that the order of processing is as follows: > Requests are processed starting from the beginning of the chain and move towards the end of the filter chain. Responses are processed from the end of the filter chain and move back towards the beginning of the filter chain.
As an example, consider the example given in the rest.li client tutorial:
final HttpClientFactory http = new HttpClientFactory();
final Client r2Client = new TransportClientAdapter(
http.getClient(Collections.<String, String>emptyMap()));`
Suppose your filter was implemented in some class myClientFilter. To add this filter, you might do something like this:
FilterChain fc = FilterChains.empty().addFilter(new myClientFilter());
final HttpClientFactory http = new HttpClientFactory(fc);
final Client r2Client = new TransportClientAdapter(
http.getClient(Collections.<String, String>emptyMap()));`
So how would one go about writing a filter? As an example, suppose we wanted to use filters to compress the responses we receive from the server.
A client filter could do this:
- Add an HTTP Accept-Encoding header to its outbound requests.
- On inbound responses, the filter would read the Content-Encoding header and decompress the payload accordingly.
A corresponding server might do this:
- The server's compression filter can read the inbound request's Accept-Encoding header and store it as a local attribute.
- When the server response is ready to go, the filter can intercept the outbound response, compress it, and send the compressed payload off with the corresponding HTTP Content-Encoding header.
See an implementation example here: https://github.com/linkedin/rest.li/tree/master/r2/src/main/java/com/linkedin/r2/filter/compression
For a full list of filters, see: https://github.com/linkedin/rest.li/wiki/List-of-R2-filters
Quick Access:
- Tutorials
- Dynamic Discovery
- Request Response API
-
Rest.li User Guide
- Rest.li Server
- Resources
- Resource Types
- Resource Methods
- Rest.li Client
- Projections
- Filters
- Wire Protocol
- Data Schemas
- Data
- Unstructured Data
- Tools
- FAQ