Skip to content
代码片段 群组 项目
未验证 提交 a47e17e5 编辑于 作者: Pedro Pombeiro's avatar Pedro Pombeiro 提交者: GitLab
浏览文件

Merge branch '441485-db-structure-for-storing-code-suggestion-events' into 'master'

No related branches found
No related tags found
无相关合并请求
# frozen_string_literal: true
class CreateCodeSuggestionTables < ClickHouse::Migration
def up
execute <<~SQL
CREATE TABLE IF NOT EXISTS code_suggestion_usages
(
user_id UInt64 DEFAULT 0,
event UInt8 DEFAULT 0,
namespace_path String DEFAULT '0/',
timestamp DateTime64(6, 'UTC') DEFAULT now64()
) ENGINE = ReplacingMergeTree
PARTITION BY toYear(timestamp)
ORDER BY (user_id, event, timestamp)
SQL
execute <<~SQL
CREATE TABLE IF NOT EXISTS code_suggestion_daily_usages
(
user_id UInt64 DEFAULT 0,
timestamp Date32 DEFAULT toDate(now64()),
) ENGINE = ReplacingMergeTree
PARTITION BY toYear(timestamp)
ORDER BY (user_id, timestamp)
SETTINGS index_granularity = 64
SQL
execute <<~SQL
CREATE MATERIALIZED VIEW IF NOT EXISTS code_suggestion_daily_usages_mv
TO code_suggestion_daily_usages
AS
SELECT
user_id,
timestamp
FROM code_suggestion_usages
WHERE event = 1
GROUP BY user_id, timestamp
SQL
end
def down
execute <<~SQL
DROP VIEW IF EXISTS code_suggestion_daily_usages_mv
SQL
execute <<~SQL
DROP TABLE IF EXISTS code_suggestion_daily_usages
SQL
execute <<~SQL
DROP TABLE IF EXISTS code_suggestion_usages
SQL
end
end
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册