mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-27 00:19:58 +00:00
* fix all hard error Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix nextest Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * trivial changes Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix order by Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix sql keyword and data type Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix range exec's input partitioning Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix cover input type Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix explain analyze Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * update distributed mode sqlness result Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix lints Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * update locks Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * downgrade dlv-list Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
97 lines
2.5 KiB
Plaintext
97 lines
2.5 KiB
Plaintext
CREATE TABLE system_metrics (
|
|
host STRING,
|
|
idc STRING,
|
|
cpu_util DOUBLE,
|
|
memory_util DOUBLE,
|
|
disk_util DOUBLE,
|
|
ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP(),
|
|
PRIMARY KEY(host, idc),
|
|
TIME INDEX(ts)
|
|
);
|
|
|
|
Affected Rows: 0
|
|
|
|
INSERT INTO system_metrics
|
|
VALUES
|
|
("host1", "idc_a", 11.8, 10.3, 10.3, 1667446797450),
|
|
("host2", "idc_a", 80.0, 70.3, 90.0, 1667446797450),
|
|
("host1", "idc_b", 50.0, 66.7, 40.6, 1667446797450);
|
|
|
|
Affected Rows: 3
|
|
|
|
SELECT * FROM system_metrics;
|
|
|
|
+-------+-------+----------+-------------+-----------+-------------------------+
|
|
| host | idc | cpu_util | memory_util | disk_util | ts |
|
|
+-------+-------+----------+-------------+-----------+-------------------------+
|
|
| host1 | idc_a | 11.8 | 10.3 | 10.3 | 2022-11-03T03:39:57.450 |
|
|
| host1 | idc_b | 50.0 | 66.7 | 40.6 | 2022-11-03T03:39:57.450 |
|
|
| host2 | idc_a | 80.0 | 70.3 | 90.0 | 2022-11-03T03:39:57.450 |
|
|
+-------+-------+----------+-------------+-----------+-------------------------+
|
|
|
|
SELECT count(*) FROM system_metrics;
|
|
|
|
+----------+
|
|
| COUNT(*) |
|
|
+----------+
|
|
| 3 |
|
|
+----------+
|
|
|
|
SELECT avg(cpu_util) FROM system_metrics;
|
|
|
|
+------------------------------+
|
|
| AVG(system_metrics.cpu_util) |
|
|
+------------------------------+
|
|
| 47.26666666666667 |
|
|
+------------------------------+
|
|
|
|
SELECT idc, avg(memory_util) FROM system_metrics GROUP BY idc ORDER BY idc;
|
|
|
|
+-------+---------------------------------+
|
|
| idc | AVG(system_metrics.memory_util) |
|
|
+-------+---------------------------------+
|
|
| idc_a | 40.3 |
|
|
| idc_b | 66.7 |
|
|
+-------+---------------------------------+
|
|
|
|
DROP TABLE system_metrics;
|
|
|
|
Affected Rows: 0
|
|
|
|
create table foo (
|
|
host string,
|
|
ts timestamp DEFAULT '2023-04-29 00:00:00+00:00',
|
|
cpu double default 0,
|
|
TIME INDEX (ts),
|
|
PRIMARY KEY(host)
|
|
) engine=mito with(regions=1);
|
|
|
|
Affected Rows: 0
|
|
|
|
insert into foo (host, cpu, ts) values ('host1', 1.1, '2000-01-01 00:00:00+00:00');
|
|
|
|
Affected Rows: 1
|
|
|
|
insert into foo (host, cpu) values ('host2', 2.2);
|
|
|
|
Affected Rows: 1
|
|
|
|
insert into foo (host) values ('host3');
|
|
|
|
Affected Rows: 1
|
|
|
|
select * from foo;
|
|
|
|
+-------+---------------------+-----+
|
|
| host | ts | cpu |
|
|
+-------+---------------------+-----+
|
|
| host1 | 2000-01-01T00:00:00 | 1.1 |
|
|
| host2 | 2023-04-29T00:00:00 | 2.2 |
|
|
| host3 | 2023-04-29T00:00:00 | 0.0 |
|
|
+-------+---------------------+-----+
|
|
|
|
DROP TABLE foo;
|
|
|
|
Affected Rows: 0
|
|
|