Here’s why we chose Kong API Gateway and moved away from Kong.

We DON’T Need NGINX Anymore. Hello, KONG API Gateway!

Gone are the days when NGINX used to be the primary choice, meet Kong API Gateway.

We are blessed to have such a diverse team of developers having different experiences at Decentro.

Our engineering team is a melting pot of ingenious ideas and talent. This is our first step in bringing the talent out from them in black and white. We would continue to present this space with top-notch engineering articles on varied topics. Do keep checking our blog.

API development has moved from a single stack monolithic architecture to the majestic microservices architecture.

This requires a gateway server that should manage redirection, proxying and security over multiple requests. This means our old faithful NGINX has become a little outdated. (Let’s not even talk about Apache HTTP Server here!)

Even if you run a monolithic application, The API Gateway is still a good pick. Apart from proxying, there are many other benefits. 

The API Gateways should give us the developer the ability to:

  1. Scale: As you grow, so should your application
  2. Provide security: Applying SSL is just scratching the surface
  3. Have a GUI: This would make life 10 times easier
  4. Be Intuitive: Should be self explanatory

But what does it do?” 

You may ask. Good question.

Suppose we have an API stack with multiple APIs spanning over a bunch of microservices. Let’s look at the diagram:

Here you can see the API Gateway being the lord and the savior for the application instances running behind it. It proxies the requests to the requisite application instance (as a reverse proxy). Now your endpoint can be independent of the microservice it caters to. 

So if you want to have multiple endpoints (e.g., /docs, /documents, /documentation) connected to the same application, you can. Just reverse proxy it, baby!

Farewell, NGINX!

Here at Decentro, we used to work with NGINX as our reverse proxy server. But we grew out of it. We had to log in to our instance to reload NGINX via CLI and had to learn to manage configurations when using NGINX. It didn’t have consumer-level handling for API management. 

We needed something extra. After logging our heads together for quick brainstorming and crossing the Is’ & Ts’ on the Pros/Cons list, we found the one!

Dhumm… Dhumm… Dhumm…

Did you feel it?

Here comes KONG!

Source: Github

As is evident from the image above, Kong provides a lot of features out of the box. No recompilation. No command-line configuration. No extra cost.

Kong comes with its own RESTful Admin APIs. It is built on top of OpenResty (an extension of NGINX) and LuaJIT. These provide access to all kinds of configurations that can be made available. We have done another addition on top of it by adding the Konga dashboard to manage Kong via a GUI. 

Kong API Gateway Structure

The API structure in Kong is pretty simple:

  1. Services – The logical representation of your microservice or monolithic application
  2. Routes – The logical representation of endpoints that are accessible within the service.
  3. Consumers – The clients that are going to be using the services.
  4. Plugins – This is where the magic happens. Plugins can be applied to either of the above entities mentioned. 

So let’s talk about an example.

I have a microservice that takes care of sending emails. I will declare a Service with the name “emails” (Pretty innovative.. I know). This will contain the details of the application server, which it will reverse proxy for.

Now let’s make Routes for this service. So we have two kinds of emails to be sent.

  1. Transactional – Sent by the API
  2. Marketing – Sent by the marketing department to let the clients know about the new features of our awesome product.

Now, we will put an API Key authentication plugin on top of the “emails” service. This will ensure that no bad actors try to get access to our APIs.  

Rate-limit Plugins

We will also add a rate-limit plugin (to limit the number of API hits) on the different routes.

  1. Transactional (600 per minute) – Since this API is triggered by other flows, we need a high rate limit.
  2. Marketing (1 per minute) – Since this is manually triggered, we don’t need to go beyond 1 per minute

In order to further enhance our security, we will allow only certain IP addresses to be able to access our transactional email route as it will be triggered only by our internal systems, and we know the IP address range for our internal systems.

We will set it open to the world (Potentially insecure) for the marketing emails as the marketing peeps should be able to access it from any cafe that they wish to work out of.

Now we want only authorized consumers to access the APIs, so we will set up a consumer and add the API authentication credentials for them to use.

Now our email service is ready to serve consumers. We can integrate it into our code and give it to the marketing peeps for them to use it manually.

Wrapping Things Up

As you can see, using Kong as an API Gateway is simple and takes the hassle of managing APIs. Kong provides many other features like upstreams, certificate management, request and response transformation, serverless code execution, logging, and CORS, which are very helpful when you wish to develop APIs quickly.

I rest my case!

NGINX and other reverse proxy servers are simply blown out of the water by the ease of configurability and sheer dexterity that KONG provides out of the box.

Clients love our products because engineering is the bedrock on which they are built. From the CEO to the interns, everyone is focused to deliver quality with a primary focus on APIs. The heartbeat of our company is the 1s and 0s traversing through our applications.

If you have the same love as we do for Engineering, we encourage you to check out the careers page . Be a part of our passionate journey towards making stellar products!

Until we see you next time with another tech story!