Skip to main content

Microservices vs. APIs

It still surprises me just how many times I come across misconceptions around Micro Services and APIs.

Often hearing phrases like micro services are fine grained web services or API is themselves are equivalent to micro services. These all sort of show fundamental misconceptions under the covers.
So, I've written this just to really break that out and explain about what the key differences are in those two concepts.

What is an API?
An API, fundamentally Application Programming Interface, that is an interface. It's a way of making requests into a component. So it's the route that you go in to make those requests. In modern use that typically means a REST API, that's a call made using HTTP protocol using JSON data as the payload.

What are Micro Services?
So let's ensure we also have a clear crisp definition on what a micro service architecture really is. Micro-Services architecture is about breaking down large silo applications into smaller components.
That are more manageable fully decoupled pieces with the aim of gaining benefit in terms of greater agility, more dynamic scalability and more targeted forms of resilience. Really it's about the shape and the size of the component that's within the application itself.

So, Micro-Services architecture that is really about breaking things down into small components. it's really a micro component architecture. An API is/are the interfaces that could  be used to expose the functionality in those components but the two of separate concepts. They're not directly related. There's no particular reason to assume.

For example, we changed our design from a large application to that of a set of separate micro service components. It would change the number of APIs that the overall application exposes or indeed change their granularity. Those two things are completely independent of one another.
So, Micro Services are components that are used  to build up an application in a more agile framework. APIs are a way of exposing functionality of an application whether it's written as micro services or not. There's no one-to-one correlation between the two. We could easily have Micro Service exposing multiple APIs or just one or indeed none at all.

A micro service component could be working on asynchronous messages, picking messages and manipulating, enriching them and putting them somewhere else. There may be no API whatsoever. It's just a component of an application.

Micro services and APIs are related, but they are not the same. Micro service is a component. referring them as Micro-service components may improve clarity.


We've skimmed over some pretty deep concepts here. Micro Services architecture is non-trivial to understand, when you start comparing it with things came before it like service oriented architecture and trusting between them that can really get quite sensitive.
Hope this helps to understand the fundamentals!


Comments

Popular posts from this blog

Javascript - Unanswered questions - Part 1

What is Event delegation? Event delegation is Javascript as it relates to the DOM. It basically means that if you attach an event listener to a DOM element that listener is not only firing on that DOM element. It's actually firing on every children in that. So, for instance if you have a navigation and so you've got an unordered list you've got list items and then you've got anchor tags inside that navigation what you have. If you add an event listener to the ul element in essence you're actually adding event listener to all of the children as well. In short, JS event listeners fir not only on a single DOM element but on all its descendants. What is Event Bubbling? It's actually inverse of Event delegation. Also known as propagation, events on an DOM element will bubble up and also fire on all parents.  What's the difference between "target" and "currentTarget"? target is the actual element that triggered the event for example clicked, wh

One or more ActiveX controls could not be displayed because..... in Outlook

Some times We've facing this problem in Microsoft Outlook. While trying to add the images to our mails or Opening some emails. 1) Your current security settings prohibit running ActiveX controls on this page, or 2) You have blocked a publisher of one of the controls As a result, the page may not display correctly. To resolve this problem follow these steps. In Microsoft Outlook : Go to Tools > Options > Mail Format > Message Format Check the options " Use MS Office Word to ....". Happy Mailing..........................