Plugin Development - Accessing the Datastore

Kong interacts with the model layer through classes we refer to as “DAOs”. This chapter will detail the available API to interact with the datastore.

Kong supports two primary datastores: Cassandra and PostgreSQL.

kong.db

All entities in Kong are represented by:

  • A schema that describes which table the entity relates to in the datastore, constraints on its fields such as foreign keys, non-null constraints etc. This schema is a table described in the plugin configuration chapter.
  • An instance of the DAO class mapping to the database currently in use (Cassandra or Postgres). This class’ methods consume the schema and expose methods to insert, update, select and delete entities of that type.

The core entities in Kong are: Services, Routes, Consumers and Plugins. All of them are accessible as Data Access Objects (DAOs), through the kong.db global singleton:

  1. -- Core DAOs
  2. local services = kong.db.services
  3. local routes = kong.db.routes
  4. local consumers = kong.db.consumers
  5. local plugins = kong.db.plugins

Both core entities from Kong and custom entities from plugins are available through kong.db.*.

The DAO Lua API

The DAO class is responsible for the operations executed on a given table in the datastore, generally mapping to an entity in Kong. All the underlying supported databases (currently Cassandra and Postgres) comply to the same interface, thus making the DAO compatible with all of them.

For example, inserting a Service and a Plugin is as easy as:

  1. local inserted_service, err = kong.db.services:insert({
  2. name = "mockbin",
  3. url = "http://mockbin.org",
  4. })
  5. local inserted_plugin, err = kong.db.plugins:insert({
  6. name = "key-auth",
  7. service = inserted_service,
  8. })

For a real-life example of the DAO being used in a plugin, see the Key-Auth plugin source code.


Next: Storing Custom Entities ›