Earlier quoted context omitted.
(Caveat: I’m the CEO of Tyk) Tyk offers a more “batteries included” approach to Kong, and so doesn’t rely on external plugin authors to extend the ecosystem. 100% of our dev team are constantly working on our open source components and we like to keep it that way. Because of that, Tyk isn’t “open core” like Kong is, there’s no lock-in or levers to get you to buy our value-adds like our Management Dashboard GUI or our…
Thanks for this comparison, never heard of Tyk before. OT: Your frontpage is very slow (Chrome v.71) - it loads but takes ages to scroll down.
Kong gateway reaches 1.0 GA, now supports service mesh
21–30 of 51 posts
Re: Kong gateway reaches 1.0 GA, now supports service mesh
#22Earlier quoted context omitted.
Thanks for this comparison, never heard of Tyk before. OT: Your frontpage is very slow (Chrome v.71) - it loads but takes ages to scroll down.
Thanks - we’re painfully aware and are lookig to change it so it’s more usable :-/
Re: Kong gateway reaches 1.0 GA, now supports service mesh
#23So I admittedly don't know much about this stuff, but what would be the difference between using Kong and the Nginx ingress controller? What advantages/improvements would I see/be able to use?
The main difference is in plugin API. It's very easy to write plugin for Kong. The second is where data is persisted. Kong stores data in db. Therefore they can do something with it. Ingress controller in 0.21 has dynamic backend, they basically hold an in memory objects for api routing rule.
Kong shines when you have complex logic routing, want to leverage their API keys authentication. Such as you can easily expose a service, with API key store in db. Where as you have to write a logs of `auth access` rule and store key in configmap/env in Nginx ingress.
Nginx ingress config is all about watching configmap/annotations and re-generate config. Such as when new service are added, the config is generated(When new pods are added/remove they use Lua to routing so no more reload in there). In Kong, these are seamless, no reload. All data are stored in either Postgres/Cassandra.
That's said, Kong is very nice but it adds more overhead than a simple Nginx ingress.
Re: Kong gateway reaches 1.0 GA, now supports service mesh
#24How does Kong compare to Tyk?
(Caveat: I’m the CEO of Tyk) Tyk offers a more “batteries included” approach to Kong, and so doesn’t rely on external plugin authors to extend the ecosystem. 100% of our dev team are constantly working on our open source components and we like to keep it that way. Because of that, Tyk isn’t “open core” like Kong is, there’s no lock-in or levers to get you to buy our value-adds like our Management Dashboard GUI or our…
Re: Kong gateway reaches 1.0 GA, now supports service mesh
#25Earlier quoted context omitted.
Thanks for this comparison, never heard of Tyk before. OT: Your frontpage is very slow (Chrome v.71) - it loads but takes ages to scroll down.
Thanks - we’re painfully aware and are lookig to change it so it’s more usable :-/
Re: Kong gateway reaches 1.0 GA, now supports service mesh
#26Re: Kong gateway reaches 1.0 GA, now supports service mesh
#27Earlier quoted context omitted.
> Nginx gives you the ability to tweak functionality, but it's not as dynamic or as easy out of the box. NginX supports Lua and Javascript embedded and out of the box on many distributions.
That is through a set of additional plugins. Kong uses that base and ships with mature implementing plugins including a robust RESTful API for managing config.
Which are compiled and enabled in several distribution packages.
Re: Kong gateway reaches 1.0 GA, now supports service mesh
#28How does Kong compare to Tyk?
(Caveat: I’m the CEO of Tyk) Tyk offers a more “batteries included” approach to Kong, and so doesn’t rely on external plugin authors to extend the ecosystem. 100% of our dev team are constantly working on our open source components and we like to keep it that way. Because of that, Tyk isn’t “open core” like Kong is, there’s no lock-in or levers to get you to buy our value-adds like our Management Dashboard GUI or our…
I contacted Kong sales once about OpenID connect support, they basically dismissed us as too small. Needless to say we took Kong out of our stack and won't consider it again.
Re: Kong gateway reaches 1.0 GA, now supports service mesh
#29What would be the best way to deploy this with my application in Kubernetes?