cartodb-postgresql/scripts-available/CDB_GhostTables.sql

110 lines
3.6 KiB
MySQL
Raw Normal View History

2019-03-07 01:19:38 +08:00
-- Table to store the transaction id from DDL events to avoid multiple executions
2019-03-08 15:28:06 +08:00
CREATE TABLE IF NOT EXISTS cartodb.cdb_ddl_execution(txid integer PRIMARY KEY, tag text);
2019-03-07 01:19:38 +08:00
-- Enqueues a job to run Ghost tables linking process for the provided user_id
2019-03-08 15:28:06 +08:00
CREATE OR REPLACE FUNCTION _CDB_LinkGhostTables(username text, db_name text, ddl_tag text)
2019-03-07 01:19:38 +08:00
RETURNS void
AS $$
2019-03-08 15:28:06 +08:00
if not username:
2019-03-07 01:19:38 +08:00
return
client = GD.get('redis', None)
retry = 3
error = ''
2019-03-08 15:28:06 +08:00
# TODO: read TIS config from cdb_conf
tis_host = '127.0.0.1'
tis_port = 6379
tis_timeout = 5
2019-03-07 01:19:38 +08:00
while True:
if not client:
try:
import redis
2019-03-08 15:28:06 +08:00
client = GD['redis'] = redis.Redis(host=tis_host, port=tis_port, socket_timeout=tis_timeout)
2019-03-07 01:19:38 +08:00
except Exception as err:
error = "client_error - %s" % str(err)
# NOTE: no retries on connection error
plpy.error('Ghost tables connection error: ' + str(err))
break
try:
2019-03-08 15:28:06 +08:00
# client.execute_command('DBSCH', db_name, username, ddl_tag)
2019-03-07 01:19:38 +08:00
break
except Exception as err:
error = "request_error - %s" % str(err)
client = GD['redis'] = None # force reconnect
if not retry:
plpy.error('Ghost tables error: ' + str(err))
break
retry -= 1 # try reconnecting
$$ LANGUAGE 'plpythonu' VOLATILE PARALLEL UNSAFE;
-- Enqueues a job to run Ghost tables linking process for the current user
CREATE OR REPLACE FUNCTION CDB_LinkGhostTables()
RETURNS void
AS $$
DECLARE
2019-03-08 15:28:06 +08:00
username TEXT;
db_name TEXT;
ddl_tag TEXT;
2019-03-07 01:19:38 +08:00
BEGIN
2019-03-08 15:28:06 +08:00
EXECUTE 'SELECT CDB_Username();' INTO username;
EXECUTE 'SELECT current_database();' INTO db_name;
EXECUTE 'SELECT tag FROM cartodb.cdb_ddl_execution WHERE txid = txid_current();' INTO ddl_tag;
PERFORM _CDB_LinkGhostTables(username, db_name, ddl_tag);
2019-03-07 01:19:38 +08:00
DELETE FROM cartodb.cdb_ddl_execution WHERE txid = txid_current();
2019-03-08 15:28:06 +08:00
RAISE NOTICE '_CDB_LinkGhostTables() called with username=%, ddl_tag=%', username, ddl_tag;
2019-03-07 01:19:38 +08:00
END;
$$ LANGUAGE plpgsql VOLATILE PARALLEL UNSAFE SECURITY DEFINER;
-- Trigger function to call CDB_LinkGhostTables()
CREATE OR REPLACE FUNCTION _CDB_LinkGhostTablesTrigger()
RETURNS trigger
AS $$
BEGIN
PERFORM CDB_LinkGhostTables();
RETURN NULL;
END;
$$ LANGUAGE plpgsql VOLATILE PARALLEL UNSAFE SECURITY DEFINER;
-- Trigger to call CDB_LinkGhostTables() when adding a row in cartodb.cdb_ddl_execution
DROP TRIGGER IF EXISTS check_ddl_update ON cartodb.cdb_ddl_execution;
CREATE CONSTRAINT TRIGGER check_ddl_update
AFTER INSERT ON cartodb.cdb_ddl_execution
INITIALLY DEFERRED
FOR EACH ROW
EXECUTE PROCEDURE _CDB_LinkGhostTablesTrigger();
-- Event trigger to save the current transaction in cartodb.cdb_ddl_execution
CREATE OR REPLACE FUNCTION CDB_SaveDDLTransaction()
RETURNS event_trigger
AS $$
BEGIN
2019-03-08 15:28:06 +08:00
INSERT INTO cartodb.cdb_ddl_execution VALUES (txid_current(), tg_tag) ON CONFLICT (txid) DO NOTHING;
2019-03-07 01:19:38 +08:00
END;
$$ LANGUAGE plpgsql VOLATILE PARALLEL UNSAFE SECURITY DEFINER;
-- Creates the trigger on DDL events to link ghost tables
CREATE OR REPLACE FUNCTION CDB_EnableGhostTablesTrigger()
RETURNS void
AS $$
BEGIN
2019-03-08 15:43:22 +08:00
DROP EVENT TRIGGER IF EXISTS link_ghost_tables;
2019-03-07 01:19:38 +08:00
CREATE EVENT TRIGGER link_ghost_tables
ON ddl_command_end
2019-03-08 15:43:22 +08:00
WHEN TAG IN ('CREATE TABLE', 'SELECT INTO', 'DROP TABLE', 'ALTER TABLE', 'CREATE TRIGGER', 'DROP TRIGGER')
2019-03-07 01:19:38 +08:00
EXECUTE PROCEDURE CDB_SaveDDLTransaction();
END;
$$ LANGUAGE plpgsql VOLATILE PARALLEL UNSAFE;
-- Drops the trigger on DDL events to link ghost tables
CREATE OR REPLACE FUNCTION CDB_DisableGhostTablesTrigger()
RETURNS void
AS $$
BEGIN
2019-03-08 15:43:22 +08:00
DROP EVENT TRIGGER IF EXISTS link_ghost_tables;
2019-03-07 01:19:38 +08:00
END;
$$ LANGUAGE plpgsql VOLATILE PARALLEL UNSAFE;