美文网首页
mysqlslap性能压测

mysqlslap性能压测

作者: KingJW | 来源:发表于2020-04-16 17:43 被阅读0次

    进入mysql容器

    docker-compose exec mysql bash
    
    mysqlslap -a -u root -p -uroot -proot
    

    开始压测 -c 用户数量 ,-i执行几次, --create-schema 需要压测的数据库 -q 压测的语句 -e 数据表的存储引擎

    mysqlslap -uroot -proot -c 10000 -i 1 --create-schema wshop_testing -q 'select * from tracker_paths' -e innodb --number-of-queries=1000
    
    mysqlslap -uroot -proot -c 1000 -i 1 --create-schema wshop_testing -q 'INSERT INTO tracker_paths(path)VALUES(1);' -e innodb --number-of-queries=1000
    

    查询太慢 建索引

    一、哪些情况下适合建索引
      1. 频繁作为where条件语句查询的字段
      2. 关联字段需要建立索引,例如外键字段,student表中的classid, classes表中的schoolid 等
      3. 排序字段可以建立索引
      4. 分组字段可以建立索引,因为分组的前提是排序
      5. 统计字段可以建立索引,例如count(),max()
    二、哪些情况下不适合建索引
      1.频繁更新的字段不适合建立索引
      2.where条件中用不到的字段不适合建立索引
      3.表数据可以确定比较少的不需要建索引
      4.数据重复且发布比较均匀的的字段不适合建索引(唯一性太差的字段不适合建立索引),例如性别,真假值
      5. 参与列计算的列不适合建索引

    create index  zjw on tracker_paths(path);
    

    删除索引

    drop index zjw on tracker_paths;
    

    查看 连接数 修改连接数

    show status;
    
    show variables like 'max_connections';
    
    set global max_connections=10000;
    

    相关文章

      网友评论

          本文标题:mysqlslap性能压测

          本文链接:https://www.haomeiwen.com/subject/qxedvhtx.html