The problem
Create an applications relying on web APIs seems to be quite popular these days. There is already an impressive collection of ready-to-use public APIs that we can consume to create mashup, or add features into our web sites.In the meantime, it has never been so easy to create your own REST-like API with node.js, asp.net web api, ruby or whatever tech you want. It’s also very common to create your own private/restricted API for your SPA, Cross-platform mobiles apps or your own IoT device. The naïve approach, when building our web API, is to add one API method for every feature ; at the end, we got a well-architectured and brilliant web API following the Separation of Concerns principle : one method for each feature. Let’s put it all together in your client … it’s a drama in terms of web performance for the end user and there is never less than 100s requests/sec on staging environment; Look at your page, there are 26 API calls on your home page !
I talk here about web apps but it’s pretty the same for mobile native applications .RTT and latency is much more important than bandwidth speed. It’s impossible to create a responsive and efficient application with a chatty web API.
The proper approach
At the beginning of December 2014, I attended at the third edition in APIdays in Paris. There was an interesting session –among the others- on Scenario Driven Design by @ijansch.The fundamental concept in any RESTful API is the resource. It’s an abstract concept and it’s merely different from a data resource. A resource should not be a raw data model (the result of an SQL query for the Web) but should be defined with client usage in mind. “REST is not an excuse to expose your raw data model. “ With this kind of approach, you will create dump clients and smart APIs with a thick business logic.
A common myth is “Ok, but we don’t know how our API is consumed, that’s why we expose raw data”. Most of the times, it’s false. Let’s take the example of twitter timelines. They are list of tweets or messages displayed in the order in which they were sent, with the most recent on top. This is a very common feature and you can see timelines in every twitter client. Twitter exposes a timeline API and API clients just have to call this API to get timelines. Especially, clients don’t have to compute timelines by themselves, by requesting XX times the twitter API for friends, tweets of friends, etc …
I think this is an important idea to keep in mind when designing our APIS. generally, We don’t need to be so RESTful (Wwhat about HATEOS ?). Think more about API usability and scenarios, that RESTfullness.
Another not-so-new approach: Batch requests
Reducing the number of request from a client is a common and well-known Web Performance Optimization technique. Instead of several small images, it’s better to use sprites. Instead of many js library files, it’s better to combine them. Instead of several API calls, we can use batch requests.Batch requests are not REST-compliant, but we already know that we should sometimes break the rules to have better performance and better scaliblity.
If you find yourself in need of a batch operation, then most likely you just haven’t defined enough resources., Roy T. Fieldin, Father of REST
What is a batch request ?
A batch request contains several different API requests into a single POST request. HTTP provides a special content type for this kind of scenario: Multipart. On server-side, requests are unpacked and dispatched to the appropriate API methods. All responses are packed together and sent back to the client as a single HTTP response.Here is an example of a batch request:
Request
--1418988512147 Content-Type: application/http; msgtype=request GET /get1 HTTP/1.1 Host: localhost:9000 --1418988512147 Content-Type: application/http; msgtype=request GET /get2 HTTP/1.1 Host: localhost:9000 --1418988512147 Content-Type: application/http; msgtype=request GET /get3 HTTP/1.1 Host: localhost:9000 --1418988512147--Response
--91b1788f-6aec-44a9-a04f-84a687b9d180 Content-Type: application/http; msgtype=response HTTP/1.1 200 OK Content-Type: application/json; charset=utf-8 "I am Get1 !" --91b1788f-6aec-44a9-a04f-84a687b9d180 Content-Type: application/http; msgtype=response HTTP/1.1 200 OK Content-Type: application/json; charset=utf-8 "I am Get2 !" --91b1788f-6aec-44a9-a04f-84a687b9d180 Content-Type: application/http; msgtype=response HTTP/1.1 200 OK Content-Type: application/json; charset=utf-8 "I am Get3 !" --91b1788f-6aec-44a9-a04f-84a687b9d180--Batch support in asp.net web api
To support batch requests in your asp.net web API, you just have to add a new custom route :Tip : the DefaultBatchHandler doesn’t provide a way to limit the number of requests in a batch. To avoid performance issues, we may want to limit to 100/1000/… concurrent requests. You have to create your own implementation by inheriting DefaultHttpBatchHandler.
This new endpoint will allow client to send batch requests and you have nothing else to do on server-side. On client side, to send batch requests, you can use this jquery.batch, batchjs, angular-http-batcher module, …
I will not explain all details here but there is an interesting feature provided by DefaultHttpBatchHandler : the property ExecutionOrder allow to choose between sequential or no sequential processing order. Thanks to the TAP programming model, it’s possible to execute API requests in parallel (for true async API methods)
Here is the result of async/sync batch requests for a pack of three 3 web methods taking one second to be processed.

Finally, Batch requests are not a must-have feature but it’s certainly something to keep in mind. It can help a lot in some situations. Run this console app or try to browse localhost:9000/index.html. From my point of view here are some Pros/Cons of this approach.
0 comments:
Post a Comment