forked-synapse/synapse/storage/schema/full_schemas/11/transactions.sql

64 lines
2.4 KiB
MySQL
Raw Normal View History

2015-03-04 13:34:38 +00:00
/* Copyright 2014, 2015 OpenMarket Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-- Stores what transaction ids we have received and what our response was
CREATE TABLE IF NOT EXISTS received_transactions(
2015-03-18 11:18:49 +00:00
transaction_id VARCHAR(255),
origin VARCHAR(255),
2015-03-19 13:42:39 +00:00
ts BIGINT,
2015-03-04 13:34:38 +00:00
response_code INTEGER,
2015-03-18 11:18:49 +00:00
response_json BLOB,
2015-03-04 13:34:38 +00:00
has_been_referenced BOOL default 0, -- Whether thishas been referenced by a prev_tx
2015-03-18 11:18:49 +00:00
UNIQUE (transaction_id, origin)
2015-03-19 13:42:39 +00:00
) ENGINE = INNODB;
2015-03-04 13:34:38 +00:00
CREATE INDEX IF NOT EXISTS transactions_have_ref ON received_transactions(origin, has_been_referenced);-- WHERE has_been_referenced = 0;
-- Stores what transactions we've sent, what their response was (if we got one) and whether we have
-- since referenced the transaction in another outgoing transaction
CREATE TABLE IF NOT EXISTS sent_transactions(
2015-03-19 13:42:39 +00:00
id BIGINT PRIMARY KEY, -- This is used to apply insertion ordering
2015-03-18 11:18:49 +00:00
transaction_id VARCHAR(255),
destination VARCHAR(255),
2015-03-04 13:34:38 +00:00
response_code INTEGER DEFAULT 0,
2015-03-18 11:18:49 +00:00
response_json BLOB,
2015-03-20 10:55:31 +00:00
ts BIGINT
2015-03-19 13:42:39 +00:00
) ENGINE = INNODB;
2015-03-04 13:34:38 +00:00
CREATE INDEX IF NOT EXISTS sent_transaction_dest ON sent_transactions(destination);
CREATE INDEX IF NOT EXISTS sent_transaction_txn_id ON sent_transactions(transaction_id);
-- So that we can do an efficient look up of all transactions that have yet to be successfully
-- sent.
CREATE INDEX IF NOT EXISTS sent_transaction_sent ON sent_transactions(response_code);
-- For sent transactions only.
CREATE TABLE IF NOT EXISTS transaction_id_to_pdu(
transaction_id INTEGER,
2015-03-18 11:18:49 +00:00
destination VARCHAR(255),
pdu_id VARCHAR(255),
pdu_origin VARCHAR(255),
UNIQUE (transaction_id, destination)
2015-03-19 13:42:39 +00:00
) ENGINE = INNODB;
2015-03-04 13:34:38 +00:00
CREATE INDEX IF NOT EXISTS transaction_id_to_pdu_dest ON transaction_id_to_pdu(destination);
-- To track destination health
CREATE TABLE IF NOT EXISTS destinations(
2015-03-18 11:18:49 +00:00
destination VARCHAR(255) PRIMARY KEY,
2015-03-19 13:42:39 +00:00
retry_last_ts BIGINT,
2015-03-04 13:34:38 +00:00
retry_interval INTEGER
2015-03-19 13:42:39 +00:00
) ENGINE = INNODB;