DEV Community

Megha Sahay
Megha Sahay

Posted on

gRPC vs GraphQL vs REST vs Websockets

Introduction

Many software architects face problems to choose between the best suitable technology for their services. A communication technology that is operational, practical and should allow developers to define a set of CRUD (Create, Read, Update and Delete) methods for processing data.

In this article I have tried to compare REST architecture style, gRPC , GraphQL and WebSockets communication protocols. SOAP is not considered because it is no longer a preferred method of communication in modern web applications. This first section gives introduction to these communication protocols. Then comparing the performance of these protocols. Concluding with some results from research papers.

REST

It stands for Representational State Transfer which is an architecture style. This was introduced and defined by Roy T. Fielding in 2000. When we think of REST which is a concept of resources. A resource can be thought as a thing that service is aware of like an Employee for example. The server will create different representation of this Employee on request. Once the client has a representation of Employee then it can make request to change it, if the operation is successful then a HTTP success code is retuned otherwise an HTTP error code is returned. REST is commonly used over HTTP.

How does HTTP request work?

A typical Request/Response anatomy

When we open a web browser of any website. The browser acts as a client that makes a request to remote server. A request can be considered as a text document which contains mainly these information :

  1. *verb *— What action to perform on server.
  • Get : Request resource

  • Post : Create resource

  • Put : Update resource

  • Patch : Partial update

  • Delete : Delete resource

  1. *header *— Information and meta data about the request. It can be content type, content length, authorization (who is making a call), Accept (which content type client is able to understand), cookies and much more.

This can be considered as header example.

Cache-control: no-cache
Enter fullscreen mode Exit fullscreen mode

*3. content/body *— It is the information that can optionally asked for to fulfill a request. it can be HTML/CSS/JavaScript/Json or any other format.

Below shows a typical HTTP request with verb, header and content.

POST /api/employee HTTP/1.1
Host: myWebApi.com
Content-Type: application/json
Cache-Control: no-cache

{
     "Name": "Megha Sahay",
     "Age": 25
}
Enter fullscreen mode Exit fullscreen mode

Response

Response is a textual document containing status code that says success or failure , headers (content type) and content that server sends in response.

  1. Status code — Operation status

100–199 : informational

200–299: success

300–399: Redirection information

400–499: client error

500–599: server errors

  1. Header - It is set of headers just like request header.

  2. Content - Very much like request content that contains the response information.

An example of HTTP response. The status code of 200 (ok) is returned. The header information consists of the date server, accept-ranges, content-length, content-type. The content or the body of response is an HTML document as shown below.

HTTP/1.1 200 OK
Date: Thu, 03 Jan 2022 23:30:00 GMT
Server: gws
Accept-Ranges: bytes
Content-Length: 68894
Content-Type: text/html; charset=UTF-8

<!doctype html><html …
Enter fullscreen mode Exit fullscreen mode

Benefits of REST with HTTP

  1. One endpoint — GET retrieves a resource in an idempotent way and POST creates new resource. This means that we can avoid a lot of createEmployee and editEmployee methods. Which means that we can POST the Employee representation to request that server can create new resource and we can use GET request to fetch a representation of a resource. HTTP helps REST to have one endpoint in the form of an Employee resource.

  2. **Large supporting tools — **A lot of monitoring, caching, load balancers tools have out of box support for HTTP. This helps to effectively handle large volumes of traffic and route them cleverly.

  3. **Security **— Makes security process easier one can use all available security controls with HTTP to secure communication.

Summary

To sum up REST architecture style can result in better performance and scalability in simple, lightweight applications.

WebSocket Protocol

It is a communication protocol that enables two-way communication. Which would mean that the server is independent of the client and doesn't have to wait for client for request. The server can send data independently. This can be possible by establishing a single TCP connection between client and server.

The websocket protocol consists of two phases :

  1. **Handshake — **When the client sends an HTTP request, it should have several headers set. The below is an example of the client request.

    GET /chat HTTP/1.1 Host: server.mywebsite.com
    Upgrade: websocket
    Connection: Upgrade
    Sec-WebSocket-Key: gdhsddfdtwDkjskiqw1==
    Origin: http://mywebsite.com
    Sec-WebSocket-Protocol: chat, superchat
    Sec-WebSocket-Version:14

The server then replies with its own handshake response which has HTTP code set to 101. Example response is below:

HTTP/1.1 101 Switching Protocols 
Upgrade: websocket 
Connection: Upgrade 
Sec-WebSocket-Accept: hdgsahdywqySDASDDA+xOo= 
Sec-WebSocket-Protocol: chat
Enter fullscreen mode Exit fullscreen mode
  1. TCP connection — When the handshake is completed successfully the communication is done via a single TCP connection using The Websocket Protocol. The client server send data independently in chunks called messages. Message consists of frames which are transferred across sides.

The connection to be closed, a unique frame is sent by one of the peers. The frame has the contact of closure. When some other peer receives it, responds with close frame. So that the connection is safely closed.

Summary

To summarize web sockets are Real-time, bidirectional, persistent connections. Suitable for low-latency data exchange. A low latency is a computer network that is optimized to process high volume of data with minimal delay.

gRPC (Google remote procedure call)

gRPC is an open source system that implements remote procedure call concept. It was developed by Google in 2015 as a successor of RPC system called Stubby. Stubby, an RPC framework that consists of core RPC layer that can handle internet-scale of tens of billions of requests per seconds. Stubby was made as open-source called gRPC.

RPC is a Remote Procedure Call, at the Client Code, it just looks like you’re calling a local function from the server. It supports streaming, language independent, low latency.

What makes gRPC so fast?

  1. Based on HTTP/2 communication protocol- It is the newest version of popular HTTP protocol. It dynamically increases network efficiency and enables real-time communication by providing a framework for long lived connections.

  2. Protocol buffers — It is a cross platform mechanism developed by Google which allows to define data structures and interfaces in .proto files. Then, developed file can be used to generate a file in targeted language (i.e., Java, Python, Go , C#). The benefit of this is that one Protobuf file can generate an API for different language that is implementing server side, and other which is implementing client side. What is more, Protocol Buffer is a binary format what means that is faster and smaller than other formats (i.e, JSON or XML).

Summary

gRPC is based on RPC framework uses HTTP/2 and protobuf an binary format, making it very fast. It can be used when you need faster communication. Therefore it should be used in scenario that needs real time data streaming and large data loads.

GraphQL

It is an open source solution for querying and mutating(changing) data via remote API. It was first developed by Facebook but was publicly available in 2015. Now it is developed by Linux Foundation. It is not tied to any specific database or storage engine. It is backed by existing code and data.

  • In short GraphQL has only one endpoint, which is HTTP post request.

  • We simply send a single query to a GraphQL server that includes the concrete data requirements. The server then responds with JSON object as response.

  • If a client wants to fetch the researcher data that includes the id, research title and members of the project. Then, the client only specifies exactly which data it needs in a query and sends a request using the HTTP POST method.

  • Clients have the flexibility to define what type of data to fetch from the database. It helps when the client needs a flexible response format to avoid extra massive data transfer. It is also supported in various popular programming languages such as Python, C#, JavaScript, etc. Two things are the most important part of GraphQL, i.e., Schema and Resolver function. GraphQL requires 3 important parts that must be define firstly.

  1. **mutation - **to update, input, and delete data.

  2. **query - **for calling or getting data

  3. **type — **to describe the type of field/data

Summary

GraphQL is database neutral technology that provides flexibility to the client to get data from multiple servers in a single response. GraphQL was developed to solve a mobile problem. However, those benefits may not be relevant to your project. There are some drawbacks to it for an application like Lack of proper pagination, caching, and MIME types are real issues. As resolvers are harder to maintain managing GraphQL is complex. So, graphQL is suitable for mobile apps or when you have complex schema or you receive data from multiple sources are to name a few.

REST vs GraphQL architecture

This section illustrates the major differences between gRPC, REST and GraphQL.

The main difference between REST and GraphQL APIs technology is the availability of the number of endpoints when they are handling requests. GraphQL tries to collect every request to one place, whereas the REST is built such that each resource is handled by specific endpoints. The REST configuration creates a complicated situation whenever there is a change on the back-end, and it causes an adjustment to the front-end to query the exact endpoint for the desired resource. On the other hand, GraphQL takes some time when the request is handled at a single endpoint to find the right resource. Figure below illustrates the difference between REST and GraphQL architecture.

Image reference [research paper](https://www.mdpi.com/2073-431X/10/11/138) Illustration of the difference between REST and GraphQL architectures

gRPC vs REST vs GraphQL

The parameters chosen for comparison between gRPC, REST and GraphQL is the architecture, data organization, the supported operations, data fetching, community support, Performance, Development speed, learning curve for developers, self documentation, file uploading capabilities, in build caching, stability and real world use case. It can be seen from the below summary table that no one technology is winner. There are some tradeoffs if you have a simple application REST can be sufficient as gRPC and GraphQL adds unnecessary complexity.

gRPC vs REST vs GraphQL vs Websocket a performance comparison a closer look

In this section we will take a closer look at performance comparison. The parameters are time and memory consumed for inserting/fetching elements to/from database.

  1. **Time measured for fetching/inserting elements **— WebSockets protocol turned out to be the slowest and the least stable. gRPC protocol was the fastest in this task.

  2. **Memory measured for fetching/inserting element **— WebSockets offers the best memory usage out of 4 presented communication protocols. In both fetching and inserting it achieved the best result. Other protocols use noticeably more resources, especially gRPC which is the most memory-consuming mechanism of communication in this comparison.

    gRPC protocol is the fastest in transferring data between client and server. The WebSockets protocol achieved similar results to REST when transferred data was small. When data was larger it turned out to be the slowest. REST style was moderately fast. It turned to be slower than gRPC, but was never the worst in any category. GraphQL had some troubles with small data. It was the worst in inserting and fetching one element from database. It was slightly faster than the WebSockets in fetching a larger data.

Summary

If a programmer is looking for the fastest way to transfer data and does not care about message size the relevant option will be gRPC. On the other hand, if delivery time is not crucial and there is need of low memory usage the right option will be WebSocket. REST protocol is also an interesting way to communicate. It provides decent memory usage, time performance and what is the most important it is easily accessible, which means that every new client can easily connect to server. There is also GraphQL which provides the worst memory usage to time performance ratio especially in single element operations. This means that this protocol should be used in other way, e.g., nested data structures where data is fetched with queries.

References

  1. GraphQL — https://www.howtographql.com/basics/0-introduction/

  2. gRPC — https://grpc.io/blog/grpc-on-http2/

  3. Book — Building Microservices: Designing Fine-Grained Systems

  4. Research paper — https://doi.org/10.48550/arXiv.2212.07475

  5. Research Paper — https://www.mdpi.com/2073-431X/10/11/138

  6. Protocol buffers official documentation: https://protobuf.dev/overview/

Top comments (0)