Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SOA/Web Service Pagination

In SOA we should not be building or holding state (or designing dependencies) between client and server. This is understood. But what patterns can be followed in the case that a client wants to consume a real-time service that may return an open ended number of 'rows'?

Web applications, similar to SOA but allowing for state (sessions) have solved this with pagination. Pagination requires (in most cases, especially with SQL) that the server holds the data and that the client request the data in chunks.

If we where to consider pagination-like scenarios for web services, what patterns would these follow that would still allow the tenets of SOA to be adhered (or as close as possible).

Some rules for the thinkers: 1) Backed by a SQL database (therefore there is no concept of a row number in a select set) 2) It is important to not skip a row or duplicate a row in a set during pagination 3) Data may be inserted and deleted at any time into the database by other clients 4) There is no need to consider the dataset a live (update-able) dataset

Personally, I think that 1 and 2 above already spell our the solution by constraining the solution space with the requirements.

My proposed solution would have the data (as much as is selected) be stored in a read-only store/cache where it can be assigned a row number within the result set and allow pagination to occur on this data snapshot. I have would have infrastructure to store snapshots (servers, external caches, memcached or ehcache - this must scale quite large). The result of such a query would be a snapshot ID and clients could retrieve the data from the snapshot using a snapshot API (web services) and the snapshot ID. Results would be processed in a read-only, forward only manner for x records at a time where x was something reasonable.

Competing thoughts and ideas, criticisms or accolades would be greatly appreciated.

like image 247
cmdematos Avatar asked Jun 22 '10 14:06

cmdematos


1 Answers

Paginated results in a Web Service is actually quite easy to achieve.

All you have to do is add two parameters to the web service call: Page Size, Page Number.

Page Size is the number of results to include in a page. Page Number is the number of the page of results you are looking for.

Your web service then goes back to the database (or cache), retreives the results, figures out which results fit on the requested page, and return only those results.

The client then has to make a single request per page of results they want from the service.

like image 84
Justin Niessner Avatar answered Oct 21 '22 07:10

Justin Niessner