--
-- Copyright © 2016 The Thingsboard Authors
--
-- 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.
--
CREATE KEYSPACE IF NOT EXISTS thingsboard
WITH replication = {
'class' : 'SimpleStrategy',
'replication_factor' : 1
};
CREATE TABLE IF NOT EXISTS thingsboard.user (
id timeuuid,
tenant_id timeuuid,
customer_id timeuuid,
email text,
search_text text,
authority text,
first_name text,
last_name text,
additional_info text,
PRIMARY KEY (id, tenant_id, customer_id, authority)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.user_by_email AS
SELECT *
from thingsboard.user
WHERE email IS NOT NULL AND tenant_id IS NOT NULL AND customer_id IS NOT NULL AND id IS NOT NULL AND authority IS NOT
NULL
PRIMARY KEY ( email, tenant_id, customer_id, id, authority );
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.user_by_tenant_and_search_text AS
SELECT *
from thingsboard.user
WHERE tenant_id IS NOT NULL AND customer_id IS NOT NULL AND authority IS NOT NULL AND search_text IS NOT NULL AND id
IS NOT NULL
PRIMARY KEY ( tenant_id, customer_id, authority, search_text, id )
WITH CLUSTERING ORDER BY ( customer_id DESC, authority DESC, search_text ASC, id DESC );
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.user_by_customer_and_search_text AS
SELECT *
from thingsboard.user
WHERE tenant_id IS NOT NULL AND customer_id IS NOT NULL AND authority IS NOT NULL AND search_text IS NOT NULL AND id
IS NOT NULL
PRIMARY KEY ( customer_id, tenant_id, authority, search_text, id )
WITH CLUSTERING ORDER BY ( tenant_id DESC, authority DESC, search_text ASC, id DESC );
CREATE TABLE IF NOT EXISTS thingsboard.user_credentials (
id timeuuid PRIMARY KEY,
user_id timeuuid,
enabled boolean,
password text,
activate_token text,
reset_token text
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.user_credentials_by_user AS
SELECT *
from thingsboard.user_credentials
WHERE user_id IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( user_id, id );
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.user_credentials_by_activate_token AS
SELECT *
from thingsboard.user_credentials
WHERE activate_token IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( activate_token, id );
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.user_credentials_by_reset_token AS
SELECT *
from thingsboard.user_credentials
WHERE reset_token IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( reset_token, id );
CREATE TABLE IF NOT EXISTS thingsboard.admin_settings (
id timeuuid PRIMARY KEY,
key text,
json_value text
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.admin_settings_by_key AS
SELECT *
from thingsboard.admin_settings
WHERE key IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( key, id )
WITH CLUSTERING ORDER BY ( id DESC );
CREATE TABLE IF NOT EXISTS thingsboard.tenant (
id timeuuid,
title text,
search_text text,
region text,
country text,
state text,
city text,
address text,
address2 text,
zip text,
phone text,
email text,
additional_info text,
PRIMARY KEY (id, region)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.tenant_by_region_and_search_text AS
SELECT *
from thingsboard.tenant
WHERE region IS NOT NULL AND search_text IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( region, search_text, id )
WITH CLUSTERING ORDER BY ( search_text ASC, id DESC );
CREATE TABLE IF NOT EXISTS thingsboard.customer (
id timeuuid,
tenant_id timeuuid,
title text,
search_text text,
country text,
state text,
city text,
address text,
address2 text,
zip text,
phone text,
email text,
additional_info text,
PRIMARY KEY (id, tenant_id)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.customer_by_tenant_and_search_text AS
SELECT *
from thingsboard.customer
WHERE tenant_id IS NOT NULL AND search_text IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( tenant_id, search_text, id )
WITH CLUSTERING ORDER BY ( search_text ASC, id DESC );
CREATE TABLE IF NOT EXISTS thingsboard.device (
id timeuuid,
tenant_id timeuuid,
customer_id timeuuid,
name text,
search_text text,
additional_info text,
PRIMARY KEY (id, tenant_id, customer_id)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.device_by_tenant_and_name AS
SELECT *
from thingsboard.device
WHERE tenant_id IS NOT NULL AND customer_id IS NOT NULL AND name IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( tenant_id, name, id, customer_id)
WITH CLUSTERING ORDER BY ( name ASC, id DESC, customer_id DESC);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.device_by_tenant_and_search_text AS
SELECT *
from thingsboard.device
WHERE tenant_id IS NOT NULL AND customer_id IS NOT NULL AND search_text IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( tenant_id, search_text, id, customer_id)
WITH CLUSTERING ORDER BY ( search_text ASC, id DESC, customer_id DESC);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.device_by_customer_and_search_text AS
SELECT *
from thingsboard.device
WHERE tenant_id IS NOT NULL AND customer_id IS NOT NULL AND search_text IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( customer_id, tenant_id, search_text, id )
WITH CLUSTERING ORDER BY ( tenant_id DESC, search_text ASC, id DESC );
CREATE TABLE IF NOT EXISTS thingsboard.device_credentials (
id timeuuid PRIMARY KEY,
device_id timeuuid,
credentials_type text,
credentials_id text,
credentials_value text
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.device_credentials_by_device AS
SELECT *
from thingsboard.device_credentials
WHERE device_id IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( device_id, id );
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.device_credentials_by_credentials_id AS
SELECT *
from thingsboard.device_credentials
WHERE credentials_id IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( credentials_id, id );
CREATE TABLE IF NOT EXISTS thingsboard.widgets_bundle (
id timeuuid,
tenant_id timeuuid,
alias text,
title text,
search_text text,
image blob,
PRIMARY KEY (id, tenant_id)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.widgets_bundle_by_tenant_and_search_text AS
SELECT *
from thingsboard.widgets_bundle
WHERE tenant_id IS NOT NULL AND search_text IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( tenant_id, search_text, id )
WITH CLUSTERING ORDER BY ( search_text ASC, id DESC );
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.widgets_bundle_by_tenant_and_alias AS
SELECT *
from thingsboard.widgets_bundle
WHERE tenant_id IS NOT NULL AND alias IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( tenant_id, alias, id )
WITH CLUSTERING ORDER BY ( alias ASC, id DESC );
CREATE TABLE IF NOT EXISTS thingsboard.widget_type (
id timeuuid,
tenant_id timeuuid,
bundle_alias text,
alias text,
name text,
descriptor text,
PRIMARY KEY (id, tenant_id, bundle_alias)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.widget_type_by_tenant_and_aliases AS
SELECT *
from thingsboard.widget_type
WHERE tenant_id IS NOT NULL AND bundle_alias IS NOT NULL AND alias IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( tenant_id, bundle_alias, alias, id )
WITH CLUSTERING ORDER BY ( bundle_alias ASC, alias ASC, id DESC );
CREATE TABLE IF NOT EXISTS thingsboard.dashboard (
id timeuuid,
tenant_id timeuuid,
customer_id timeuuid,
title text,
search_text text,
configuration text,
PRIMARY KEY (id, tenant_id, customer_id)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.dashboard_by_tenant_and_search_text AS
SELECT *
from thingsboard.dashboard
WHERE tenant_id IS NOT NULL AND customer_id IS NOT NULL AND search_text IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( tenant_id, customer_id, search_text, id )
WITH CLUSTERING ORDER BY ( customer_id DESC, search_text ASC, id DESC );
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.dashboard_by_customer_and_search_text AS
SELECT *
from thingsboard.dashboard
WHERE tenant_id IS NOT NULL AND customer_id IS NOT NULL AND search_text IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( customer_id, tenant_id, search_text, id )
WITH CLUSTERING ORDER BY ( tenant_id DESC, search_text ASC, id DESC );
CREATE TABLE IF NOT EXISTS thingsboard.ts_kv_cf (
entity_type text, // (DEVICE, CUSTOMER, TENANT)
entity_id timeuuid,
key text,
partition bigint,
ts bigint,
bool_v boolean,
str_v text,
long_v bigint,
dbl_v double,
PRIMARY KEY (( entity_type, entity_id, key, partition ), ts)
);
CREATE TABLE IF NOT EXISTS thingsboard.ts_kv_partitions_cf (
entity_type text, // (DEVICE, CUSTOMER, TENANT)
entity_id timeuuid,
key text,
partition bigint,
PRIMARY KEY (( entity_type, entity_id, key ), partition)
) WITH CLUSTERING ORDER BY ( partition ASC )
AND compaction = { 'class' : 'LeveledCompactionStrategy' };
CREATE TABLE IF NOT EXISTS thingsboard.ts_kv_latest_cf (
entity_type text, // (DEVICE, CUSTOMER, TENANT)
entity_id timeuuid,
key text,
ts bigint,
bool_v boolean,
str_v text,
long_v bigint,
dbl_v double,
PRIMARY KEY (( entity_type, entity_id ), key)
) WITH compaction = { 'class' : 'LeveledCompactionStrategy' };
CREATE TABLE IF NOT EXISTS thingsboard.attributes_kv_cf (
entity_type text, // (DEVICE, CUSTOMER, TENANT)
entity_id timeuuid,
attribute_type text, // (CLIENT_SIDE, SHARED, SERVER_SIDE)
attribute_key text,
bool_v boolean,
str_v text,
long_v bigint,
dbl_v double,
last_update_ts bigint,
PRIMARY KEY ((entity_type, entity_id, attribute_type), attribute_key)
) WITH compaction = { 'class' : 'LeveledCompactionStrategy' };
CREATE TABLE IF NOT EXISTS thingsboard.component_descriptor (
id timeuuid,
type text, //("FILTER", "PROCESSOR", "ACTION", "PLUGIN")
scope text,
name text,
search_text text,
clazz text,
configuration_descriptor text,
actions text,
PRIMARY KEY (clazz, id, type, scope)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.component_desc_by_type_search_text AS
SELECT *
from thingsboard.component_descriptor
WHERE type IS NOT NULL AND scope IS NOT NULL AND search_text IS NOT NULL AND id IS NOT NULL AND clazz IS NOT NULL
PRIMARY KEY ( type, search_text, id, clazz, scope)
WITH CLUSTERING ORDER BY ( search_text DESC);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.component_desc_by_scope_type_search_text AS
SELECT *
from thingsboard.component_descriptor
WHERE type IS NOT NULL AND scope IS NOT NULL AND search_text IS NOT NULL AND id IS NOT NULL AND clazz IS NOT NULL
PRIMARY KEY ( (scope, type), search_text, id, clazz)
WITH CLUSTERING ORDER BY ( search_text DESC);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.component_desc_by_id AS
SELECT *
from thingsboard.component_descriptor
WHERE type IS NOT NULL AND scope IS NOT NULL AND id IS NOT NULL AND clazz IS NOT NULL
PRIMARY KEY ( id, clazz, scope, type )
WITH CLUSTERING ORDER BY ( clazz ASC, scope ASC, type DESC);
CREATE TABLE IF NOT EXISTS thingsboard.rule (
id timeuuid,
tenant_id timeuuid,
name text,
state text,
search_text text,
weight int,
plugin_token text,
filters text, // Format: {"clazz":"A", "name": "Filter A", "configuration": {"types":["TELEMETRY"]}}
processor text, // Format: {"clazz":"A", "name": "Processor A", "configuration": null}
action text, // Format: {"clazz":"A", "name": "Action A", "configuration": null}
additional_info text,
PRIMARY KEY (id, tenant_id)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.rule_by_plugin_token AS
SELECT *
FROM thingsboard.rule
WHERE tenant_id IS NOT NULL AND id IS NOT NULL AND plugin_token IS NOT NULL
PRIMARY KEY (plugin_token, tenant_id, id) WITH CLUSTERING ORDER BY (tenant_id DESC, id DESC);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.rule_by_tenant_and_search_text AS
SELECT *
FROM thingsboard.rule
WHERE tenant_id IS NOT NULL AND id IS NOT NULL AND search_text IS NOT NULL
PRIMARY KEY (tenant_id, search_text, id) WITH CLUSTERING ORDER BY (search_text ASC);
CREATE TABLE IF NOT EXISTS thingsboard.plugin (
id uuid,
tenant_id uuid,
name text,
state text,
search_text text,
api_token text,
plugin_class text,
public_access boolean,
configuration text,
additional_info text,
PRIMARY KEY (id, tenant_id)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.plugin_by_api_token AS
SELECT *
FROM thingsboard.plugin
WHERE api_token IS NOT NULL AND id IS NOT NULL AND tenant_id IS NOT NULL
PRIMARY KEY (api_token, id, tenant_id) WITH CLUSTERING ORDER BY (id DESC);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.plugin_by_tenant_and_search_text AS
SELECT *
from thingsboard.plugin
WHERE tenant_id IS NOT NULL AND search_text IS NOT NULL AND id IS NOT NULL
PRIMARY KEY ( tenant_id, search_text, id )
WITH CLUSTERING ORDER BY ( search_text ASC, id DESC );
CREATE TABLE IF NOT EXISTS thingsboard.event (
tenant_id timeuuid, // tenant or system
id timeuuid,
event_type text,
event_uid text,
entity_type text, // (device, customer, rule, plugin)
entity_id timeuuid,
body text,
PRIMARY KEY ((tenant_id, entity_type, entity_id), event_type, event_uid)
);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.event_by_type_and_id AS
SELECT *
FROM thingsboard.event
WHERE tenant_id IS NOT NULL AND entity_type IS NOT NULL AND entity_id IS NOT NULL AND id IS NOT NULL
AND event_type IS NOT NULL AND event_uid IS NOT NULL
PRIMARY KEY ((tenant_id, entity_type, entity_id), event_type, id, event_uid)
WITH CLUSTERING ORDER BY (event_type ASC, id ASC, event_uid ASC);
CREATE MATERIALIZED VIEW IF NOT EXISTS thingsboard.event_by_id AS
SELECT *
FROM thingsboard.event
WHERE tenant_id IS NOT NULL AND entity_type IS NOT NULL AND entity_id IS NOT NULL AND id IS NOT NULL
AND event_type IS NOT NULL AND event_uid IS NOT NULL
PRIMARY KEY ((tenant_id, entity_type, entity_id), id, event_type, event_uid)
WITH CLUSTERING ORDER BY (id ASC, event_type ASC, event_uid ASC);