SlideShare a Scribd company logo
Mastering Microservices with Kong (DevoxxUK 2019)
OO
Context
What is API Management?
Demo
What is an API Gateway?
Demo
Hello, Kong
Demo
How does it work?
Plugins
Why Kong?
Wrap up
W API MW API M
(source: )
“API management is the process of creating
and publishing web APIs, enforcing their
usage policies, controlling access, nurturing
the subscriber community, collecting and
analyzing usage statistics, and reporting on
performance.
Wikipedia
MM
https://pxhere.com/en/photo/1435275
R D 1R D 1
Fro n
Be r AP Bre y AP
/api/beers/{id}
/api/brewery/{id}/beers
Ne d an AP ke !
/api/brewery/
/api/brewery/{id}
Ne d an AP ke !
1. Build a few μ-services
2. Deploy them using Docker compose
3. Observations:
1. Each μ-service has a different address
2. Logic (e.g. security) is duplicated in each μ-service
W API GW API G
(source: )
“Wikipedia does not have an article with this
exact name.
Wikipedia
(source: )
“Amazon API Gateway is a fully managed
service that makes it easy for developers to
create, publish, maintain, monitor, and
secure APIs at any scale.
Amazon API Gateway
(source: )
“Use Azure API Management as a turnkey
solution for publishing APIs to external and
internal customers. Quickly create
consistent and modern API gateways for
existing back-end services hosted
anywhere, secure and protect them from
abuse and overuse, and get insights into
usage and health.
Azure API Management
μ-μ-
https://pxhere.com/en/photo/768263
RR
(e.g. nginx, Apache HTTPD, Netflix Zuul)
Routing (to individual μ-services)
SSL/TLS offloading
Load balancing
C API GC API G
Authentication
Autorisation (limited)
Rate limiting
Logging
Metering
Metrics
Compression
IP black- / whitelisting
Caching
...
Aggregations and transformations → .backend-for-frontend (BFF)
R D 2R D 2
Fro n
Kon
Be r AP Bre y AP
/api/beers/{id}
/api/brewery/{id}/beers
Ne d an AP ke !
/api/brewery/
/api/brewery/{id}
Ne d an AP ke !
R D 2R D 2
Configuring Kong:
1. Define a service that points to an upstream.
2. Define a route for that service.
3. Define an upstream with (1..n) target.
SERVICE
       url: http://beer-api.upstream/        
       name: beer-api.service
UPSTREAM
       name: beer-api.upstream        
SERVICE
       url: http://brewery-api.upstream/        
       name: brewery-api.service
UPSTREAM
       name: brewery-api.upstream        
TARGET
       target: beer-api:9080        
               
TARGET
       target: brewery-api-1:9080        
       weight: 10        
TARGET
       target: brewery-api-2:9080        
       weight: 20        
ROUTE
       paths: [ /api/beer/*, /api/brewery/*/beers ]        
       methods: [ GET ]
ROUTE
       paths: [ /api/brewery* ]        
       methods: [ GET ]
KK
Based on Nginx
Stores configuration in a database (optional since 1.1)
Two interfaces: public and private
DD
Kong can be deployed in various modes
Standalone
Clustered
As Kubernetes Ingress Controller
On premise, in the cloud — you choose
UU
PP
PP
Open source, enterprise, 3rd party
Implemented in Lua
UU
In general:
Example (rate limiting):
curl http: kong:8001/services/<service name>/plugins 
data "name=<plugin name>" 
data "config.param=value"
curl http: kong:8001/services/beer api.service/plugins 
data "name=rate limiting" 
data "config.second=6"
M M PM M P
https://pxhere.com/en/photo/1039147
AA
Authentication: maps credentials in request to a consumer.
Consumers can have multiple credentials
Upstream API receives custom HTTP headers:
X-Consumer-Username and X-Consumer-ID
R D 3R D 3
Fro n
Kon
Be r AP Bre y AP
Ne d an AP ke !
Aut t a co m us AP ke
As i n g o s to co m
Con r & g o s
p o d b Kon
Con r & g o s
p o d b Kon
1. Create consumer
2. Assign key to consumer
3. Assign group to consumer
4. Secure upstream API with key-auth and ACL plugin
CC
You can write your own plugins!
Revelant documentation:
Plugin Development Guide
Plugin Development Kit
SS
├── README.md # Documentation right?! ;-)
└── my plugin # Name of the plugin
├── api.lua # Administration interface for the plugin (REST)
├── daos.lua # DAO's for custom entities inside the plugin
├── handler.lua # Plugin logic, executed upon request
├── migrations # Database migrations
│ ├── cassandra.lua # for Cassandra
│ └── postgres.lua # for PostgreSQL
└── schema.lua # Schema for plugin config
II HANDLERHANDLER
local BasePlugin = require "kong.plugins.base_plugin"
local MyPluginHandler = BasePlugin:extend()
MyPluginHandler.PRIORITY = 1003
MyPluginHandler.VERSION = "0.2.0"
function MyPluginHandler:new()
MyPluginHandler.super.new(self, "my plugin")
end
function MyPluginHandler:access(conf)
MyPluginHandler.super.access(self)
kong.log.info("Hello from My Plugin!")
end
return MyPluginHandler
RR
Plugins can be invoked at various moments:
Kong startup
Serving SSL-certificate
Request rewriting
API or consumer unknown!
Before hitting upstream
After receiving all response headers from upstream
For each part of the response body
Could be multiple chunks!
After sending the last byte to the client
C : TLSC : TLS
CC
Client
Load Balancer
   (TLS offloading)    
             Request with TLS client cert    
      Intrusion Prevention System       
             Request without TLS client cert
Kong
             Request without TLS client cert
K -K -
Read the custom headers from the request
Look up cert by subject
Verify other fields
Add consumer to request and send it upstream
W K WW K W
TT
Cost (e.g. licences)
Developer experience
Documentation
Flexibility / expandability
Maintainability
Support
Functional and non-functional fit out of the box
Future proof (hard to tell, though!)
Replaceability / (vendor) lock-in
WW KK
Kong (OS) seemed like a good choice:
great feature set out of the box
could buy support, if we wanted
active community
frequent releases
good documentation
EE
Changing the configuration is easy and quick
Configuration using API's
Imperative configuration isn't easy
Declarative configuration ( , or db-less mode)
Upgrading 0.13 → 0.14.1 was pretty easy
Upgrading 0.14.1 → 1.1 was a bit harder, but not too much
Lack of GUI might disappoint business stakeholders
or can help
kongverge kongfig
konga kongdash
@mthmulders #MMwK
QQ
Sample code:
Please help conference organisers: don't forget to rate this talk!
POST /api/1.0/questions
User-Agent: audience/1.0
Accept: application/vnd.infosupport.answer
Content-Type: application/vnd.infosupport.question
"So, how would you "
HTTP/1.1 200 OK
Content-Type: application/vnd.infosupport.answer
Date: Wed, Nov 21 2018 20 00 00 GMT+1
Server: Maarten/1.0
Via: kong/1.0.0
"Well, it depends on "
http://bit.ly/enterprise-beers

More Related Content

PDF
Introduction to Kong API Gateway
PDF
Mastering Microservices with Kong (CodeMotion 2019)
ODP
Kong API Gateway
PDF
APIdays Singapore 2019 - Blowing Up the Monolith: Adopting a Modern API Strat...
PDF
Kuberntes Ingress with Kong
PPTX
Scylla Summit 2018: Kong & Cassandra/Scylla for distributed APIs and Microser...
PDF
Manage your APIs and Microservices with an API Gateway
Introduction to Kong API Gateway
Mastering Microservices with Kong (CodeMotion 2019)
Kong API Gateway
APIdays Singapore 2019 - Blowing Up the Monolith: Adopting a Modern API Strat...
Kuberntes Ingress with Kong
Scylla Summit 2018: Kong & Cassandra/Scylla for distributed APIs and Microser...
Manage your APIs and Microservices with an API Gateway

What's hot (20)

PDF
Kong API
PDF
API Gateway study
PPTX
Using an API Gateway for Microservices
PPTX
Gatekeeper: API gateway
PDF
Developing a user-friendly OpenResty application
PDF
Flexible, hybrid API-led software architectures with Kong
PPTX
API Gateway: Nginx way
PDF
Using NGINX and NGINX Plus as a Kubernetes Ingress
PDF
A Kong retrospective: from 0.10 to 0.13
PDF
Kong ingress controller kubernetes ingress on steroids
PPTX
What’s New in NGINX Ingress Controller for Kubernetes Release 1.5.0
PDF
Ambassador Kubernetes-Native API Gateway
PDF
A Cassandra driver from and for the Lua community
PPTX
Microservices in GO lang
PPTX
NGINX Kubernetes Ingress Controller: Getting Started – EMEA
PPTX
TADSummit Dangerous demo: Oracle
PDF
Building a Service Mesh with Envoy (Kubecon May 2018)
PPTX
Microservices and Container Management with NGINX Plus and Mesosphere DC/OS
PDF
The Simply Complex Task of Implementing Kubernetes Ingress - Velocity NYC
PPTX
Analyzing NGINX Logs with Datadog
Kong API
API Gateway study
Using an API Gateway for Microservices
Gatekeeper: API gateway
Developing a user-friendly OpenResty application
Flexible, hybrid API-led software architectures with Kong
API Gateway: Nginx way
Using NGINX and NGINX Plus as a Kubernetes Ingress
A Kong retrospective: from 0.10 to 0.13
Kong ingress controller kubernetes ingress on steroids
What’s New in NGINX Ingress Controller for Kubernetes Release 1.5.0
Ambassador Kubernetes-Native API Gateway
A Cassandra driver from and for the Lua community
Microservices in GO lang
NGINX Kubernetes Ingress Controller: Getting Started – EMEA
TADSummit Dangerous demo: Oracle
Building a Service Mesh with Envoy (Kubecon May 2018)
Microservices and Container Management with NGINX Plus and Mesosphere DC/OS
The Simply Complex Task of Implementing Kubernetes Ingress - Velocity NYC
Analyzing NGINX Logs with Datadog
Ad

Similar to Mastering Microservices with Kong (DevoxxUK 2019) (20)

PDF
Maarten Mulders - Mastering Microservices with Kong - Codemotion Amsterdam 2019
PPTX
Working with PowerVC via its REST APIs
PDF
OpenShift Meetup - Tokyo - Service Mesh and Serverless Overview
PDF
Deep Dive into SpaceONE
PDF
Introduction to CloudStack API
PDF
Using JHipster for generating Angular/Spring Boot apps
PDF
MesosCon - Be a microservices hero
KEY
Plack perl superglue for web frameworks and servers
PDF
[APIdays Paris 2019] From Microservices to APIs: The API operator in Kubernetes
PPTX
API Workshop: Deep dive into REST APIs
PPTX
Introduction to Kubernetes
PDF
Istio Playground
PDF
Deploy and Access WebSphere Liberty and StrongLoop REST Endpoints on IBM Bluemix
PDF
Application Server-less Web Applications - Serverless Toronto Meetup
PPTX
Session: A Reference Architecture for Running Modern APIs with NGINX Unit and...
PPTX
Design Summit - RESTful API Overview - John Hardy
PDF
Remote Config REST API and Versioning
PDF
NGINX Can Do That? Test Drive Your Config File!
PDF
WSO2 Italia Open Break Session #2 - Microgateway
PDF
Building Mobile Friendly APIs in Rails
Maarten Mulders - Mastering Microservices with Kong - Codemotion Amsterdam 2019
Working with PowerVC via its REST APIs
OpenShift Meetup - Tokyo - Service Mesh and Serverless Overview
Deep Dive into SpaceONE
Introduction to CloudStack API
Using JHipster for generating Angular/Spring Boot apps
MesosCon - Be a microservices hero
Plack perl superglue for web frameworks and servers
[APIdays Paris 2019] From Microservices to APIs: The API operator in Kubernetes
API Workshop: Deep dive into REST APIs
Introduction to Kubernetes
Istio Playground
Deploy and Access WebSphere Liberty and StrongLoop REST Endpoints on IBM Bluemix
Application Server-less Web Applications - Serverless Toronto Meetup
Session: A Reference Architecture for Running Modern APIs with NGINX Unit and...
Design Summit - RESTful API Overview - John Hardy
Remote Config REST API and Versioning
NGINX Can Do That? Test Drive Your Config File!
WSO2 Italia Open Break Session #2 - Microgateway
Building Mobile Friendly APIs in Rails
Ad

More from Maarten Mulders (20)

PDF
What's cooking in Maven? (Devoxx FR)
PDF
Making Maven Marvellous (Devnexus)
PDF
Making Maven Marvellous (Java.il)
PDF
Making Maven Marvellous (JavaZone)
PDF
Dapr: Dinosaur or Developer's Dream? (v1)
PDF
Dapr: Dinosaur or Developer Dream? (J-Fall)
PDF
SSL/TLS for Mortals (Devoxx UK)
PDF
React in 40 minutes (Voxxed Days Romania)
PDF
React in 40 minutes (JCON)
PDF
React in 50 minutes (Bucharest Software Craftsmanship Community)
PDF
React in 50 Minutes (JNation)
PDF
SSL/TLS for Mortals (JavaLand)
PDF
Making Maven Marvellous (J-Fall)
PDF
Building a DSL with GraalVM (Oracle Groundbreaker APAC Virtual Tour)
PDF
SSL/TLS for Mortals (Oracle Groundbreaker EMEA Virtual Tour)
PDF
SSL/TLS for Mortals (UtrechtJUG)
PDF
Building a DSL with GraalVM (javaBin online)
PDF
SSL/TLS for Mortals (Lockdown Lecture)
PDF
React in 50 Minutes (OpenValue)
PDF
React in 50 Minutes (DevNexus)
What's cooking in Maven? (Devoxx FR)
Making Maven Marvellous (Devnexus)
Making Maven Marvellous (Java.il)
Making Maven Marvellous (JavaZone)
Dapr: Dinosaur or Developer's Dream? (v1)
Dapr: Dinosaur or Developer Dream? (J-Fall)
SSL/TLS for Mortals (Devoxx UK)
React in 40 minutes (Voxxed Days Romania)
React in 40 minutes (JCON)
React in 50 minutes (Bucharest Software Craftsmanship Community)
React in 50 Minutes (JNation)
SSL/TLS for Mortals (JavaLand)
Making Maven Marvellous (J-Fall)
Building a DSL with GraalVM (Oracle Groundbreaker APAC Virtual Tour)
SSL/TLS for Mortals (Oracle Groundbreaker EMEA Virtual Tour)
SSL/TLS for Mortals (UtrechtJUG)
Building a DSL with GraalVM (javaBin online)
SSL/TLS for Mortals (Lockdown Lecture)
React in 50 Minutes (OpenValue)
React in 50 Minutes (DevNexus)

Recently uploaded (20)

PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Digital Strategies for Manufacturing Companies
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
Transform Your Business with a Software ERP System
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
Introduction to Artificial Intelligence
PDF
top salesforce developer skills in 2025.pdf
Operating system designcfffgfgggggggvggggggggg
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Upgrade and Innovation Strategies for SAP ERP Customers
Understanding Forklifts - TECH EHS Solution
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
CHAPTER 2 - PM Management and IT Context
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
How to Choose the Right IT Partner for Your Business in Malaysia
Digital Strategies for Manufacturing Companies
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
How Creative Agencies Leverage Project Management Software.pdf
Softaken Excel to vCard Converter Software.pdf
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Odoo Companies in India – Driving Business Transformation.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Which alternative to Crystal Reports is best for small or large businesses.pdf
Transform Your Business with a Software ERP System
VVF-Customer-Presentation2025-Ver1.9.pptx
Introduction to Artificial Intelligence
top salesforce developer skills in 2025.pdf

Mastering Microservices with Kong (DevoxxUK 2019)

  • 2. OO Context What is API Management? Demo What is an API Gateway? Demo Hello, Kong Demo How does it work? Plugins Why Kong? Wrap up
  • 3. W API MW API M
  • 4. (source: ) “API management is the process of creating and publishing web APIs, enforcing their usage policies, controlling access, nurturing the subscriber community, collecting and analyzing usage statistics, and reporting on performance. Wikipedia
  • 6. R D 1R D 1 Fro n Be r AP Bre y AP /api/beers/{id} /api/brewery/{id}/beers Ne d an AP ke ! /api/brewery/ /api/brewery/{id} Ne d an AP ke ! 1. Build a few μ-services 2. Deploy them using Docker compose 3. Observations: 1. Each μ-service has a different address 2. Logic (e.g. security) is duplicated in each μ-service
  • 7. W API GW API G
  • 8. (source: ) “Wikipedia does not have an article with this exact name. Wikipedia
  • 9. (source: ) “Amazon API Gateway is a fully managed service that makes it easy for developers to create, publish, maintain, monitor, and secure APIs at any scale. Amazon API Gateway
  • 10. (source: ) “Use Azure API Management as a turnkey solution for publishing APIs to external and internal customers. Quickly create consistent and modern API gateways for existing back-end services hosted anywhere, secure and protect them from abuse and overuse, and get insights into usage and health. Azure API Management
  • 12. RR (e.g. nginx, Apache HTTPD, Netflix Zuul) Routing (to individual μ-services) SSL/TLS offloading Load balancing
  • 13. C API GC API G Authentication Autorisation (limited) Rate limiting Logging Metering Metrics Compression IP black- / whitelisting Caching ... Aggregations and transformations → .backend-for-frontend (BFF)
  • 14. R D 2R D 2 Fro n Kon Be r AP Bre y AP /api/beers/{id} /api/brewery/{id}/beers Ne d an AP ke ! /api/brewery/ /api/brewery/{id} Ne d an AP ke !
  • 15. R D 2R D 2 Configuring Kong: 1. Define a service that points to an upstream. 2. Define a route for that service. 3. Define an upstream with (1..n) target. SERVICE        url: http://beer-api.upstream/                name: beer-api.service UPSTREAM        name: beer-api.upstream         SERVICE        url: http://brewery-api.upstream/                name: brewery-api.service UPSTREAM        name: brewery-api.upstream         TARGET        target: beer-api:9080                         TARGET        target: brewery-api-1:9080                weight: 10         TARGET        target: brewery-api-2:9080                weight: 20         ROUTE        paths: [ /api/beer/*, /api/brewery/*/beers ]                methods: [ GET ] ROUTE        paths: [ /api/brewery* ]                methods: [ GET ]
  • 16. KK Based on Nginx Stores configuration in a database (optional since 1.1) Two interfaces: public and private
  • 17. DD Kong can be deployed in various modes Standalone Clustered As Kubernetes Ingress Controller On premise, in the cloud — you choose
  • 18. UU
  • 19. PP
  • 20. PP Open source, enterprise, 3rd party Implemented in Lua
  • 21. UU In general: Example (rate limiting): curl http: kong:8001/services/<service name>/plugins data "name=<plugin name>" data "config.param=value" curl http: kong:8001/services/beer api.service/plugins data "name=rate limiting" data "config.second=6"
  • 22. M M PM M P https://pxhere.com/en/photo/1039147
  • 23. AA Authentication: maps credentials in request to a consumer. Consumers can have multiple credentials Upstream API receives custom HTTP headers: X-Consumer-Username and X-Consumer-ID
  • 24. R D 3R D 3 Fro n Kon Be r AP Bre y AP Ne d an AP ke ! Aut t a co m us AP ke As i n g o s to co m Con r & g o s p o d b Kon Con r & g o s p o d b Kon 1. Create consumer 2. Assign key to consumer 3. Assign group to consumer 4. Secure upstream API with key-auth and ACL plugin
  • 25. CC You can write your own plugins! Revelant documentation: Plugin Development Guide Plugin Development Kit
  • 26. SS ├── README.md # Documentation right?! ;-) └── my plugin # Name of the plugin ├── api.lua # Administration interface for the plugin (REST) ├── daos.lua # DAO's for custom entities inside the plugin ├── handler.lua # Plugin logic, executed upon request ├── migrations # Database migrations │ ├── cassandra.lua # for Cassandra │ └── postgres.lua # for PostgreSQL └── schema.lua # Schema for plugin config
  • 27. II HANDLERHANDLER local BasePlugin = require "kong.plugins.base_plugin" local MyPluginHandler = BasePlugin:extend() MyPluginHandler.PRIORITY = 1003 MyPluginHandler.VERSION = "0.2.0" function MyPluginHandler:new() MyPluginHandler.super.new(self, "my plugin") end function MyPluginHandler:access(conf) MyPluginHandler.super.access(self) kong.log.info("Hello from My Plugin!") end return MyPluginHandler
  • 28. RR Plugins can be invoked at various moments: Kong startup Serving SSL-certificate Request rewriting API or consumer unknown! Before hitting upstream After receiving all response headers from upstream For each part of the response body Could be multiple chunks! After sending the last byte to the client
  • 29. C : TLSC : TLS
  • 30. CC Client Load Balancer    (TLS offloading)                  Request with TLS client cert           Intrusion Prevention System                     Request without TLS client cert Kong              Request without TLS client cert
  • 31. K -K - Read the custom headers from the request Look up cert by subject Verify other fields Add consumer to request and send it upstream
  • 32. W K WW K W
  • 33. TT Cost (e.g. licences) Developer experience Documentation Flexibility / expandability Maintainability Support Functional and non-functional fit out of the box Future proof (hard to tell, though!) Replaceability / (vendor) lock-in
  • 34. WW KK Kong (OS) seemed like a good choice: great feature set out of the box could buy support, if we wanted active community frequent releases good documentation
  • 35. EE Changing the configuration is easy and quick Configuration using API's Imperative configuration isn't easy Declarative configuration ( , or db-less mode) Upgrading 0.13 → 0.14.1 was pretty easy Upgrading 0.14.1 → 1.1 was a bit harder, but not too much Lack of GUI might disappoint business stakeholders or can help kongverge kongfig konga kongdash
  • 36. @mthmulders #MMwK QQ Sample code: Please help conference organisers: don't forget to rate this talk! POST /api/1.0/questions User-Agent: audience/1.0 Accept: application/vnd.infosupport.answer Content-Type: application/vnd.infosupport.question "So, how would you " HTTP/1.1 200 OK Content-Type: application/vnd.infosupport.answer Date: Wed, Nov 21 2018 20 00 00 GMT+1 Server: Maarten/1.0 Via: kong/1.0.0 "Well, it depends on " http://bit.ly/enterprise-beers