感谢分享,不过能不能下次把排版好好搞下啊?
而且很多东西不全,既然写了,干嘛不一起写进去
#!/usr/bin/perl
usestrict;
usewarnings;
srand(0);
my$RECORD_COUNT = 10000000;
for (my$i = 1; $i <= $RECORD_COUNT; $i++) {
my@ field;
push(@field, $i);
push(@field, sprintf("%08d\@example.com", $i));
push(@field, int(rand(5)) + 1);
push(@field, int(rand(10)) + 1);
push(@field, int(rand(100000)) + 1);
push(@field, int(rand(1000000)) + 1);
push(@field, int(rand(10000000)) + 1);
print join("\t", @field), "\n";
}
还有mysql的建表语句请一起发出来,谢谢
如何利用ClickHouse高速汇总查询MySQL数据概要介绍 直连到MySQL的功能现在已被添加到ClickHouse中。所以可以直接从ClickHouse查询MySQL表中的数据。 ClickHouse是一个超高性能的海量数...