240 发简信
IP属地:浙江
  • 感谢分享,不过能不能下次把排版好好搞下啊?
    而且很多东西不全,既然写了,干嘛不一起写进去

    #!/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是一个超高性能的海量数...

  • 一次奇怪的启动失败

    [root@ECS init.d]# ./mysql.server startStarting MySQL.The server quit without updating ...

  • ansible lookup dig报错

    fatal: [localhost]: FAILED! => {"failed": true, "msg": "An unhandled exception occurred...

  • python2.4.2环境安装simplejson

    官网链接:https://pypi.python.org/pypi/simplejson/2.1.0 对于一些老版本的linux,比如SUSE10,默认的python版本是2...

  • 这么复杂,都记不住了,感觉语法真的很凌乱,需要统一和规范起来

    Ansible 小手册系列 十四(条件判断和循环)

    条件判断 When 语句 在when 后面使用Jinja2 表达式,结果为True则执行任务。 若操作系统是Debian 时就执行关机操作 可以对条件进行分组在比较。 可以使...

  • Ansible Role 日志分析 之【filebeat】

    Ansible Role: filebeat 安装filebeat,用于收集日志 介绍 filebeat最初是基于logstash-forwarder源码的日志数据shipp...

  • 120
    Ansible Tower系列 五(安装 tower 3.1)

    系统要求 RHEL 7,CentOS 7或Ubuntu 14.04 LTS或16.04 LTS上,并且是64位操作系统 内存最小 2 GB RAM /var 分区最小 20G...