Created
February 1, 2022 14:45
-
-
Save kolobaev/b0d40e57a53f7243b70fb1d4fb53d001 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE MATERIALIZED VIEW graphite.names | |
( | |
`Name` String, | |
`Date` Date | |
) | |
ENGINE = ReplicatedReplacingMergeTree('/clickhouse/tables/replicator_common/graphite.names', '{replica}', Date) | |
PARTITION BY toYYYYMM(Date) | |
ORDER BY (Name, Date) | |
SETTINGS index_granularity = 8192 AS | |
SELECT DISTINCT | |
Name, | |
Date | |
FROM graphite.tagged |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment