I'm building a REST web service that receives a request and must return "Ok" if the operation was done correctly. How could I deal with the possibility of the loose of the connection while returning this "Ok" message?

For example, a system like Amazon SimpleDB.

1) It receives a request. 2) Process the request (store and replicates the content). 3) Return a confirmation message.

If the connection was lost between phases 2 and 3, the client thinks the operation was not successful then submits again.

Thanks!

link|improve this question

25% accept rate
feedback

3 Answers

A system I reviewed earlier this year had a process similar to this. The solution they implemented was to have the client reply to the commit message, and clear a flag on the record at that point. There was a periodic process that checked every N minutes, and if an entry existed that was completed, but that the client hadn't acknowledged, that transaction was rolled back. This allowed a client to repost the transaction, but not have 2 'real' records committed on the server side.

link|improve this answer
feedback

In the event of the timeout scenario, you could do the following:

Send a client generated unique id with the initial request in a header.

If the client doesn't get a response, then it can resend the request with the same id.

The server can keep a list of ids successfully processed and return an OK, rather than repeating the action.

The only issue with this is that the server will need to eventually remove the client ids. So there would need to be a time window for the server to keep the ids before purging them.

link|improve this answer
feedback

Depends on the type of web service. The whole nature of HTTP and REST is that it's basically stateless.

e.g. In the SimpleDB case, if you're simply requesting a value for a given key. If in the process of returning it the client connection is dropped then the client can simply re-request the data at a later time. That data is likely to have been cached by the db engine or the operating system disk cache anyway.

If you're storing or updating a value and the data is identical then quite often the database engines know the data hasn't changed and so the update won't take very long at all.

Even complex queries can run quicker the second time on some database engines.

In short, I wouldn't worry about it unless you can prove there is a performance problem. In which case, start caching the results of some recent queries yourself. Some REST based frameworks will do this for you. I suspect you won't even find it to be an issue in practice though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.