CartoDB-SQL-API/batch
2018-02-15 13:12:40 +01:00
..
leader Make leader locker to emit on renewal errors 2016-10-18 20:34:22 +02:00
maintenance Re-use redis pool as much as possible 2016-10-17 15:02:34 +02:00
models Fix property names to not expose user's credential info 2018-02-15 13:12:40 +01:00
pubsub Queue seeker refactor: 2017-04-03 19:26:21 +02:00
scheduler Re-insert into the tree if there was a user in done state that gets a new task 2016-10-21 11:42:27 +02:00
util Moved forever module 2016-05-18 11:55:58 +02:00
batch-logger.js Logger set to fatal on test environment 2016-10-12 01:40:35 +02:00
batch.js Improve naming 2017-04-04 10:34:07 +02:00
index.js Queue seeker refactor: 2017-04-03 19:26:21 +02:00
job_backend.js Retrieve database credentials from jobs stored in redis 2018-02-15 12:31:08 +01:00
job_canceller.js Remove unnecessary destroyOnError option 2017-08-08 18:21:10 +02:00
job_queue.js Update queue index while enqueueing jobs to the top of queue 2017-04-05 11:43:29 +02:00
job_runner.js Pass user's database credentiasl to query runner 2018-02-15 12:26:36 +01:00
job_service.js Add clear work in progress job to service 2016-10-28 15:19:49 +02:00
job_status.js Allow users to set max statement_timeout for their queries 2016-10-10 12:01:36 +02:00
query_runner.js Fallback: if the jod doesn't have databse credentials then get them from users' metadata 2018-02-15 12:25:55 +01:00
README.md Add some notes about redis data structures for batch queries 2016-10-17 16:00:30 +02:00
user_database_metadata_service.js Removed unused callback in before hook in test and added proper configuration from user database config 2016-01-14 14:08:34 +01:00

Batch Queries

This document describes features from Batch Queries, it also details some internals that might be useful for maintainers and developers.

Redis data structures

Jobs definition

Redis Hash: batch:jobs:{UUID}.

Redis DB: 5.

It stores the job definition, the user, and some metadata like the final status, the failure reason, and so.

Job queues

Redis List: batch:queue:{username}.

Redis DB: 5.

It stores a pending list of jobs per user. It points to a job definition with the {UUID}.

Job notifications

Redis Pub/Sub channel: batch:users.

Redis DB: 0.

In order to notify new jobs, it uses a Pub/Sub channel were the username for the queued job is published.

Job types

Format for the currently supported query types, and what they are missing in terms of features.

Simple

{
    "query": "update ..."
}

Does not support main fallback queries. Ideally it should support something like:

{
    "query": "update ...",
    "onsuccess": "select 'general success fallback'",
    "onerror": "select 'general error fallback'"
}

Multiple

{
    "query": [
        "update ...",
        "select ... into ..."
    ]
}

Does not support main fallback queries. Ideally it should support something like:

{
    "query": [
        "update ...",
        "select ... into ..."
    ],
    "onsuccess": "select 'general success fallback'",
    "onerror": "select 'general error fallback'"
}

Fallback

{
    "query": {
        "query": [
            {
                "query": "select 1",
                "onsuccess": "select 'success fallback query 1'",
                "onerror": "select 'error fallback query 1'"
            },
            {
                "query": "select 2",
                "onerror": "select 'error fallback query 2'"
            }
        ],
        "onsuccess": "select 'general success fallback'",
        "onerror": "select 'general error fallback'"
    }
}

It's weird to have two nested query attributes. Also, it's not possible to mix plain with fallback ones. Ideally it should support something like:

{
    "query": [
        {
            "query": "select 1",
            "onsuccess": "select 'success fallback query 1'",
            "onerror": "select 'error fallback query 1'"
        },
        "select 2"
    ],
    "onsuccess": "select 'general success fallback'",
    "onerror": "select 'general error fallback'"
    }
}

Where you don't need a nested query attribute, it's just an array as in Multiple job type, and you can mix objects and plain queries.