Linux/TimescaleDB: Difference between revisions

From Wiki
mNo edit summary
Line 36: Line 36:
</blockquote>
</blockquote>


== Links ==
* https://www.timescale.com/learn/time-series-basics
* https://www.timescale.com/learn/timescale-basics


[[Category:Linux/Services]]
[[Category:Linux/Services]]
[[Category:Linux]]
[[Category:Linux]]
[[Category:Programming]]
[[Category:Programming]]

Revision as of 19:21, 29 September 2024

Setup

CREATE TABLE sensor_data (
        time TIMESTAMPTZ NOT NULL,
        topic TEXT,
        value DOUBLE PRECISION
);
SELECT create_hypertable('sensor_data', 'time');

Insert data via Node-RED

INSERT INTO sensor_data (time, topic, value) VALUES (
    now(),
    '{{{ msg.topic }}}',
    '{{{ msg.payload }}}'
);

Get table size

SELECT hypertable_size('sensor_data');

Links