Skip to content

Latest commit

 

History

History
223 lines (151 loc) · 5.9 KB

production.rst

File metadata and controls

223 lines (151 loc) · 5.9 KB

Running in production

Kinto is a standard python application.

Recommended settings for production are listed below. Some insights about deployment strategies <deployment> are also provided.

Because we use it for most of our deploys, PostgreSQL is the recommended backend for production.

Most default setting values in the application code base are suitable for production.

Once PostgreSQL is installed <postgresql-install>, the settings about backends as shown in config/kinto.ini can be uncommented in order to use PostgreSQL.

Also, the set of settings mentionned below might deserve some review or adjustments:

Note

For an exhaustive list of available settings and their default values, refer to the source code.

By default, nobody can read buckets list. You can change that using:

Beware that if you do so, everyone will be able to list bucket information (including user's personal buckets).

Monitoring

In order to enable monitoring features like statsd, install extra requirements:

pip install "cliquet[monitoring]"

And configure its URL:

Counters

Name Description
users Number of unique user IDs.
authn_type.basicauth Number of basic authentication requests
authn_type.fxa Number of FxA authentications

Timers

Name Description
authentication.permits Time needed by the permissions backend to allow or reject a request
view.hello.GET Time needed to return the hello view
view.heartbeat.GET Time needed to return the heartbeat page
view.batch.POST Time needed to process a batch request
view.{resource}-{type}.{method} Time needed to process the specified {method} on a {resource} (e.g. bucket, collection or record). Different timers exists for the different type of resources (record or collection)
cache.{method} Time needed to execute a method of the cache backend. Methods are ping, ttl, expire, set, get and delete
storage.{method} Time needed to execute a method of the storage backend. Methods are ping, collection_timestamp, create, get, update, delete, delete_all, get_all
permission.{method} Time needed to execute a method of the permission backend. Methods are add_user_principal, remove_user_principal, user_principals, add_principal_to_ace, remove_principal_from_ace, object_permission_principals, check_permission

Heka Logging

At Mozilla, applications log files follow a specific JSON schema, that is processed through Heka.

In order to enable Mozilla Heka logging output:

With the following configuration, all logs are structured in JSON and redirected to standard output (See 12factor app). A Sentry logger is also enabled.

[loggers]
keys = root, kinto, cliquet

[handlers]
keys = console, sentry

[formatters]
keys = generic, heka

[logger_root]
level = INFO
handlers = console, sentry

[logger_kinto]
level = INFO
handlers = console, sentry
qualname = kinto

[logger_cliquet]
level = INFO
handlers = console, sentry
qualname = cliquet

[handler_console]
class = StreamHandler
args = (sys.stdout,)
level = INFO
formatter = heka

[handler_sentry]
class = raven.handlers.logging.SentryHandler
args = ('http://public:secret@example.com/1',)
level = INFO
formatter = generic

[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s

[formatter_heka]
format = %(message)s

PostgreSQL setup

In production, it is wise to run the application with a dedicated database and user.

postgres=# CREATE USER prod;
postgres=# CREATE DATABASE prod OWNER prod;
CREATE DATABASE

Once storage and cache are modified in .ini, the tables need to be created with the cliquet command-line tool:

Note

Alternatively the SQL initialization files can be found in the Cliquet source code (cliquet/cache/postgresql/schema.sql and cliquet/storage/postgresql/schema.sql).

Running with uWsgi

To run the application using uWsgi, an app.wsgi file is provided. This command can be used to run it:

uwsgi --ini config/kinto.ini

uWsgi configuration can be tweaked in the ini file in the dedicated [uwsgi] section.

Here's an example:

To use a different ini file, the KINTO_INI environment variable should be present with a path to it.