17 lines
432 B
Bash
17 lines
432 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
clickhouse-client --query "CREATE DATABASE IF NOT EXISTS hellreign;"
|
|
|
|
clickhouse-client --query "
|
|
CREATE TABLE IF NOT EXISTS hellreign.logs (
|
|
timestamp DateTime64(3) DEFAULT now(),
|
|
level LowCardinality(String),
|
|
service LowCardinality(String),
|
|
agent LowCardinality(String),
|
|
message String
|
|
) ENGINE = MergeTree()
|
|
ORDER BY (timestamp, level, service, agent)
|
|
SETTINGS index_granularity = 8192;
|
|
"
|