Data structure and naming conventions
Metrics vs Variables
Performance Metrics vs Page Variables
Storage
CREATE TABLE "metric_d_bounces"(
url TEXT,
date DATE NOT NULL,
value INTEGER
);
SELECT create_hypertable('metric_d_bounces', 'date', create_default_indexes=>FALSE);
CREATE INDEX ON metric_d_bounces (url, date DESC);
Last updated
Was this helpful?