1 搭建starRocks 只有一台机器
按照官方网站 提供语句 , 创建 明细模型表
CREATE TABLE IF NOT EXISTS detail (
event_time DATETIME NOT NULL COMMENT "datetime of event",
event_type INT NOT NULL COMMENT "type of event",
user_id INT COMMENT "id of user"
device_code INT COMMENT "device of ",
channel INT COMMENT ""
)
DUPLICATE KEY(event_time, event_type)
DISTRIBUTED BY HASH(user_id) BUCKETS 8
创建失败会报异常:
[42000][1064] Failed to find enough host in all backends. need: 3
错误原因是因为没有副本,只有一台机器导致.
需要在最后增加 一行 :
PROPERTIES("replication_num" = "1"); --副本数为1,默认为3