Statelessness in REST APIs

1. Statelessness

As per the REST (REpresentational “State” Transfer) architecture, the server does not store any state about the client session on the server-side. This restriction is called Statelessness.

Each request from the client to the server must contain all of the necessary information to understand the request. The server cannot take advantage of any stored context on the server.

The application’s session state is therefore kept entirely on the client. The client is responsible for storing and handling the session related information on its own side.

This also means that the client is responsible for sending any state information to the server whenever it is needed. There should not be any session affinity or sticky session between the client and the server.

Statelessness means that every HTTP request happens in complete isolation. When the client makes an HTTP request, it includes all information necessary for the server to fulfill the request.

The server never relies on information from previous requests from the client. If any such information is important then the client will send that as part of the current request.

To enable clients to access these stateless APIs, it is necessary that servers also should include every piece of information that the client may need to create/maintain the state on its side.

For becoming stateless, do not store even authentication/authorization details of the client. Provide authentication credentials with each request.

Thus each request MUST be stand alone and should not be affected by the previous conversation that happened with the same client in past.

2. Application State vs Resource State

It is important to understand the between the application state and the resource state. Both are completely different things.

Application state is server-side data that servers store to identify incoming client requests, their previous interaction details, and current context information.

Resource state is the current state of a resource on a server at any point in time – and it has nothing to do with the interaction between client and server. It is what we get as a response from the server as the API response. We refer to it as resource representation.

REST statelessness means being free from the application state.

3. Advantages of Stateless APIs

There are some very noticeable advantages of having REST APIs stateless.

  1. Statelessness helps in scaling the APIs to millions of concurrent users by deploying it to multiple servers. Any server can handle any request because there is no session related dependency.
  2. Being stateless makes REST APIs less complex – by removing all server-side state synchronization logic.
  3. A stateless API is also easy to cache as well. Specific softwares can decide whether or not to cache the result of an HTTP request just by looking at that one request. There’s no nagging uncertainty that state from a previous request might affect the cacheability of this one. It improves the performance of applications.
  4. The server never loses track of “where” each client is in the application because the client sends all necessary information with each request.

Reference: Roy T. Fielding on Stateless

Comments

  1. I find the explanation of “Application state” misleading.

    Another explanation of application state vs resource state can be found In RESTful Web APIs (Richardson and Amundsen. O’reilly) p. 13:

    Application state is kept on the client, but the server can manipulate it by sending representations – HTML documents, in this case – that describe the possible state transitions. Resource state is kept on the serve, but the client can manipulate it by sending the server representation – an HTML form submission, in this case – describing the new state.

    Reply
    • let’s assume that our application provides an admin dashboard in which the admin can access and see a list of connected users.In this case how can we get the list knowing that the server doesn’t store any info about the user session ?

      Reply
      • The solution that came to my mind, is to have ‘isLoggedIn’ attribute in the user class, and when the user hits logout, we can set isLoggedIn = false.
        By doing so, we can retrieve connected users from DB by selecting users where isloggedIn = true.
        The problem is that we are hitting the database in every login/logout request, is there any better solution for this ?

        Reply
        • When following REST, we should not be confused with login/logout functionality. Login and logout functionality needs a sticky session that REST does not support. Each REST API request must be complete and, if required, it shall include the auth details/token to identify the client.

          If the application has other UI interfaces that support sticky sessions then the dashboard can show that count.

          Reply
  2. Regarding statelessness, almost all rest APIs use HTTP as a transport protocol, but HTTP itself uses TCP under the hood(while TCP is a stateful protocol). Kidly help me clear my confusion.

    Reply
    • REST does not talk about underlying protocols. It refers to includes all information necessary for the server to fulfill a given request

      Reply
    • REST does not talk about protocols. It refers to includes all information necessary for the server to fulfill a given request and should not take advantage of any stored context on the server.

      Reply
      • Thanks for your reply, kindly clear my last confusion. If rest server doesn’t store any information the how come it remembers our username and password when we send a request with base64 encoded username:password, also in token authentication, the server sends us a token based on the credentials that are stored at the server.

        Reply
      • I understand now that even the client must send its credentials (with Basic Auth) every time with a new request, but does it violate the stateless operation as the server is still remembering the username:password in its database?

        Reply
        • Username and password are not application state, they are just credentials. An example of state related to authentication would be if your application has an idea of a “session”. A good way to determine whether authentication is making your API stateful is whether you have “login” and “logout” endpoints. If these endpoints exist then your application is stateful.

          Reply
          • If username/password is not considered application state then what all is considered application state

          • Not really, a typical login request on the server side will issue a response that tells the browser to set cookies on the client side, whereas a logout endpoint will issue a response that instructs the browser to clear those cookies, therefore the state is kept and managed on the client side, the server is not storing any state just issuing instructions to the client.

        • Before every REST API call, an Authorization request should be sent to allow you to accomplish the REST API call. so the Authorization request is an independent request from your original REST API request.

          Reply
  3. Thank You. This cleared up some logical confusion I was having around the push for statelessness.
    This explained that it is contextual.

    Reply
  4. It’s vey good information about stateless REST API. IS it poossible that REST API is stateFull and Can you also compare with SOAP…..
    And also can you give real time example where statefull integration is required and REST API is not usefull …..

    Reply

Leave a Comment