Files
dataservices-api/server/extension
Mario de Frutos cf3c6f2ce5 New metrics logger system
- It's not mandatory to have the log_path defined for all the services
- Now we add metrics to a MetricsGatherer using the add method in order
  to gather data from all the function scope, not just in one defined
  point
- There is a `metrics` context manager to wrap the function block. This
  context manager get the execution time for the block among other
  things
2016-11-02 15:26:39 +01:00
..
2016-10-28 10:42:25 +02:00
2016-11-02 15:26:39 +01:00
2016-08-02 16:44:03 +02:00
2016-07-11 10:51:16 +02:00

CARTO Data Services API server extension

Postgres extension for the CARTO Data Services API, server side.

Dependencies

This extension is thought to be used on top of CARTO geocoder extension, for the internal geocoder.

The following is a non-comprehensive list of dependencies:

  • Postgres 9.3+
  • Postgis extension
  • Schema triggers extension
  • cartodb-postgresql CARTO extension

Installation into the db cluster

This requires root privileges

sudo make all install

Execute tests

PGUSER=postgres make installcheck

Build, install & test

One-liner:

sudo PGUSER=postgres make all install installcheck

Install onto a CARTO user's database

Remember that is mandatory to install it on top of cdb_geocoder

psql -U postgres cartodb_dev_user_fe3b850a-01c0-48f9-8a26-a82f09e9b53f_db

and then:

CREATE EXTENSION cdb_dataservices_server;

The extension creation in the user's db requires superuser privileges.