Home © Rinat Abdullin 🌟 AI Research · Newsletter · ML Labs · About

How sticking to HTTP and REST makes your life simpler

As I discovered recently, stepping back from unnecessary technologies can lead you to a more happy path.

For example, consider a simple system running business systems for a small startup. Previously I'd try to design it as a composite backend server and a bunch of front end UI applications. They would send commands via some messaging middleware, while retrieving read models from some cloud storage.

This was pretty scalable and seemed rather simple. Still, there were a few problems:

  • Special tools are needed to diagnose and inspect the system (custom test clients, cloud storage explorers etc)
  • Special tools are needed to interact with these systems and script them.

As Greg Young once said, the need of special tooling might indicate a bigger problem. Sometimes you don't even realise that there is a problem, till you try an approach that avoids it.

Taking a business backend and switching from some middleware (which was not justified in that case) to use JSON over HTTP for communications suddenly gave much deeper insight into the system. For example, we could use Fiddler to see what's happening inside the backend:

Screen Shot 2013 09 10 at 12 57 16

Automagically you get a plenty of existing tooling for logging requests, performance tracking, analysing sessions etc. I'm not even talking about ability to leverage existing internet infrastructure with all the intermediaries.

It is a huge enabling factor to have an ability to take any given request, edit and replay it at will. Of course, we can do all that with special middle-ware tools (or write out our own). However, they will probably be less polished and numerous than open source tools for debugging HTTP requests.

Published: September 10, 2013.

🤗 Check out my newsletter! It is about building products with ChatGPT and LLMs: latest news, technical insights and my journey. Check out it out