mysql 简单定位慢查询并分析SQL执行效率

news2025/1/4 17:29:39

实际的日常开发工作中可能会遇到某个新功能在测试时需要很久才返回结果,这时就应该分析是不是慢查询导致的,如果确实有慢查询,就需要来学习怎么找到慢查询和怎么分析 SQL 执行效率?

定位慢 SQL 有如下两种解决方案:

  • 查看慢查询日志确定已经执行完的慢查询
  • show processlist 查看正在执行的慢查询

定位到慢查询语句后,可以通过 explain、show profile 和 trace 等诊断工具来分析慢查询


一、如何开启并找到慢查询日志?

如果需要使用慢查询日志,一般分为四步:

开启慢查询日志、设置慢查询阀值、确定慢查询日志路径、确定慢查询日志的文件名;

 涉及到的命令如下:

set global slow_query_log = on;
set global long_query_time = 1;
show global variables like "datadir";
show global variables like "slow_query_log_file";

二、mysqldumpslow工具分析慢查询

如果觉得系统自带的慢查询日志不方便查看,也可以使用mysqldumpslow 等工具对慢查询日志进行分析;

mysqldumpslow经常使用的参数:
-s,是order的顺序
----- al 平均锁定时间
-----ar 平均返回记录时间
-----at 平均查询时间(默认)
-----c 计数
-----l 锁定时间
-----r 返回记录
-----t 查询时间
-t,是top n的意思,即为返回前面多少条的数据
-g,后边可以写一个正则匹配模式,大小写不敏感的

基本命令如下:

mysqldumpslow -t 10 -s t -g “left join” slow.log

三、show processlist

show processlist 命令判断正在执行的慢查询。show processlist 显示哪些线程正在运行。如果有 PROCESS 权限,则可以看到所有线程。否则,只能看到当前会话的线程;

 四、使用 explain 分析慢查询

定位到慢查询语句后,我们就要开始分析 SQL 执行效率了;

简单的数据准备工作:

CREATE DATABASE test;           
use test;                       
drop table if exists t1;        

CREATE TABLE `t1` (            
 `id` int NOT NULL auto_increment,
  `a` int DEFAULT NULL,
  `b` int DEFAULT NULL,
  `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '记录创建时间',
  `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '记录更新时间',
  PRIMARY KEY (`id`),
  KEY `idx_a` (`a`),
  KEY `idx_b` (`b`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;	

drop procedure if exists insert_t1; 
delimiter ;;
create procedure insert_t1()        
begin
  declare i int;                    
  set i=1;                          
  while(i<=1000)do                  
    insert into t1(a,b) values(i, i); 
    set i=i+1;                      
  end while;
end;;
delimiter ;                 
call insert_t1();           

drop table if exists t2;    
create table t2 like t1;    
insert into t2 select * from t1;  

 explain分析结果:

 explain返回结果各字段说明:

列名解释
id查询编号
select_type查询类型:显示本行是简单还是复杂查询
table涉及到的表
partitions匹配的分区:查询将匹配记录所在的分区。仅当使用 partition 关键字时才显示该列。对于非分区表,该值为 NULL。
type本次查询的表连接类型
possible_keys可能选择的索引
key实际选择的索引
key_len被选择的索引长度:一般用于判断联合索引有多少列被选择了
ref与索引比较的列
rows预计需要扫描的行数,对 InnoDB 来说,这个值是估值,并不一定准确
filtered按条件筛选的行的百分比
Extra附加信息

 其中 select_type、type、key、rows、Extra 是重点关注项;

五、show profile 分析慢查询

在 MySQL 数据库中,通过 profile,能够更清楚地了解 SQL 执行过程的资源使用情况,如何使用 profile 分析慢查询,大致步骤是:确定这个 MySQL 版本是否支持 profile确定 profile 是否关闭开启 profile执行 SQL(查看执行完 SQL 的 query id;通过 query id 查看 SQL 的每个状态及耗时时间)

具体操作如下:

相关命令:

select @@have_profiling;
select @@profiling;
set profiling=1;

相关命令:

select * from t1 where b=1000;
show profiles;
show profile for query 1;

 六、trace 分析 SQL 优化器

如果需要使用,先开启 trace,设置格式为 JSON,再执行需要分析的 SQL,最后查看 trace 分析结果(在 information_schema.OPTIMIZER_TRACE 中)

开启该功能,会对 MySQL 性能有所影响,因此只建议分析问题时临时开启;

该语句使用的是 b 字段的索引 idx_b。实际表 t1 中,a、b 两个字段都有索引,为什么条件中有这两个索引字段却偏偏选了 b 字段的索引呢?这时就可以使用 trace 进行分析

1 手动开启trace

set session optimizer_trace="enabled=on",end_markers_in_json=on;

2 执行sql查询

select * from t1 where a >900 and b > 910 order  by a;

执行结果如下:

------+------+------+---------------------+---------------------+
| id   | a    | b    | create_time         | update_time         |
+------+------+------+---------------------+---------------------+
|  911 |  911 |  911 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  912 |  912 |  912 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  913 |  913 |  913 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  914 |  914 |  914 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  915 |  915 |  915 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  916 |  916 |  916 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  917 |  917 |  917 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  918 |  918 |  918 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  919 |  919 |  919 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  920 |  920 |  920 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  921 |  921 |  921 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  922 |  922 |  922 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  923 |  923 |  923 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  924 |  924 |  924 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  925 |  925 |  925 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  926 |  926 |  926 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  927 |  927 |  927 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  928 |  928 |  928 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  929 |  929 |  929 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  930 |  930 |  930 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  931 |  931 |  931 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  932 |  932 |  932 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  933 |  933 |  933 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  934 |  934 |  934 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  935 |  935 |  935 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  936 |  936 |  936 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  937 |  937 |  937 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  938 |  938 |  938 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  939 |  939 |  939 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  940 |  940 |  940 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  941 |  941 |  941 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  942 |  942 |  942 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  943 |  943 |  943 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  944 |  944 |  944 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  945 |  945 |  945 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  946 |  946 |  946 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  947 |  947 |  947 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  948 |  948 |  948 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  949 |  949 |  949 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  950 |  950 |  950 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  951 |  951 |  951 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  952 |  952 |  952 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  953 |  953 |  953 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  954 |  954 |  954 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  955 |  955 |  955 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  956 |  956 |  956 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  957 |  957 |  957 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  958 |  958 |  958 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  959 |  959 |  959 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  960 |  960 |  960 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  961 |  961 |  961 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  962 |  962 |  962 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  963 |  963 |  963 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  964 |  964 |  964 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  965 |  965 |  965 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  966 |  966 |  966 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  967 |  967 |  967 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  968 |  968 |  968 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  969 |  969 |  969 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  970 |  970 |  970 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  971 |  971 |  971 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  972 |  972 |  972 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  973 |  973 |  973 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  974 |  974 |  974 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  975 |  975 |  975 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  976 |  976 |  976 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  977 |  977 |  977 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  978 |  978 |  978 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  979 |  979 |  979 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  980 |  980 |  980 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  981 |  981 |  981 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  982 |  982 |  982 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  983 |  983 |  983 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  984 |  984 |  984 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  985 |  985 |  985 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  986 |  986 |  986 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  987 |  987 |  987 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  988 |  988 |  988 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  989 |  989 |  989 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  990 |  990 |  990 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  991 |  991 |  991 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  992 |  992 |  992 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  993 |  993 |  993 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  994 |  994 |  994 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  995 |  995 |  995 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  996 |  996 |  996 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  997 |  997 |  997 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  998 |  998 |  998 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
|  999 |  999 |  999 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
| 1000 | 1000 | 1000 | 2023-06-26 02:16:08 | 2023-06-26 02:16:08 |
+------+------+------+---------------------+---------------------+

3 查看 trace 分析结果

SELECT * FROM information_schema.OPTIMIZER_TRACE\G

查询结果如下图所示:

*************************** 1. row ***************************
                            QUERY: select * from t1 where a >900 and b > 910 order  by a
                            TRACE: {
  "steps": [
    {
      "join_preparation": {
        "select#": 1,
        "steps": [
          {
            "expanded_query": "/* select#1 */ select `t1`.`id` AS `id`,`t1`.`a` AS `a`,`t1`.`b` AS `b`,`t1`.`create_time` AS `create_time`,`t1`.`update_time` AS `update_time` from `t1` where ((`t1`.`a` > 900) and (`t1`.`b` > 910)) order by `t1`.`a`"
          }
        ] /* steps */
      } /* join_preparation */
    },
    {
      "join_optimization": {
        "select#": 1,
        "steps": [
          {
            "condition_processing": {
              "condition": "WHERE",
              "original_condition": "((`t1`.`a` > 900) and (`t1`.`b` > 910))",
              "steps": [
                {
                  "transformation": "equality_propagation",
                  "resulting_condition": "((`t1`.`a` > 900) and (`t1`.`b` > 910))"
                },
                {
                  "transformation": "constant_propagation",
                  "resulting_condition": "((`t1`.`a` > 900) and (`t1`.`b` > 910))"
                },
                {
                  "transformation": "trivial_condition_removal",
                  "resulting_condition": "((`t1`.`a` > 900) and (`t1`.`b` > 910))"
                }
              ] /* steps */
            } /* condition_processing */
          },
          {
            "substitute_generated_columns": {
            } /* substitute_generated_columns */
          },
          {
            "table_dependencies": [
              {
                "table": "`t1`",
                "row_may_be_null": false,
                "map_bit": 0,
                "depends_on_map_bits": [
                ] /* depends_on_map_bits */
              }
            ] /* table_dependencies */
          },
          {
            "ref_optimizer_key_uses": [
            ] /* ref_optimizer_key_uses */
          },
          {
            "rows_estimation": [
              {
                "table": "`t1`",
                "range_analysis": {
                  "table_scan": {
                    "rows": 1000,
                    "cost": 103.35
                  } /* table_scan */,
                  "potential_range_indexes": [
                    {
                      "index": "PRIMARY",
                      "usable": false,
                      "cause": "not_applicable"
                    },
                    {
                      "index": "idx_a",
                      "usable": true,
                      "key_parts": [
                        "a",
                        "id"
                      ] /* key_parts */
                    },
                    {
                      "index": "idx_b",
                      "usable": true,
                      "key_parts": [
                        "b",
                        "id"
                      ] /* key_parts */
                    }
                  ] /* potential_range_indexes */,
                  "setup_range_conditions": [
                  ] /* setup_range_conditions */,
                  "group_index_range": {
                    "chosen": false,
                    "cause": "not_group_by_or_distinct"
                  } /* group_index_range */,
                  "skip_scan_range": {
                    "potential_skip_scan_indexes": [
                      {
                        "index": "idx_a",
                        "usable": false,
                        "cause": "query_references_nonkey_column"
                      },
                      {
                        "index": "idx_b",
                        "usable": false,
                        "cause": "query_references_nonkey_column"
                      }
                    ] /* potential_skip_scan_indexes */
                  } /* skip_scan_range */,
                  "analyzing_range_alternatives": {
                    "range_scan_alternatives": [
                      {
                        "index": "idx_a",
                        "ranges": [
                          "900 < a"
                        ] /* ranges */,
                        "index_dives_for_eq_ranges": true,
                        "rowid_ordered": false,
                        "using_mrr": false,
                        "index_only": false,
                        "in_memory": 1,
                        "rows": 100,
                        "cost": 35.26,
                        "chosen": true
                      },
                      {
                        "index": "idx_b",
                        "ranges": [
                          "910 < b"
                        ] /* ranges */,
                        "index_dives_for_eq_ranges": true,
                        "rowid_ordered": false,
                        "using_mrr": false,
                        "index_only": false,
                        "in_memory": 1,
                        "rows": 90,
                        "cost": 31.76,
                        "chosen": true
                      }
                    ] /* range_scan_alternatives */,
                    "analyzing_roworder_intersect": {
                      "usable": false,
                      "cause": "too_few_roworder_scans"
                    } /* analyzing_roworder_intersect */
                  } /* analyzing_range_alternatives */,
                  "chosen_range_access_summary": {
                    "range_access_plan": {
                      "type": "range_scan",
                      "index": "idx_b",
                      "rows": 90,
                      "ranges": [
                        "910 < b"
                      ] /* ranges */
                    } /* range_access_plan */,
                    "rows_for_plan": 90,
                    "cost_for_plan": 31.76,
                    "chosen": true
                  } /* chosen_range_access_summary */
                } /* range_analysis */
              }
            ] /* rows_estimation */
          },
          {
            "considered_execution_plans": [
              {
                "plan_prefix": [
                ] /* plan_prefix */,
                "table": "`t1`",
                "best_access_path": {
                  "considered_access_paths": [
                    {
                      "rows_to_scan": 90,
                      "access_type": "range",
                      "range_details": {
                        "used_index": "idx_b"
                      } /* range_details */,
                      "resulting_rows": 90,
                      "cost": 40.76,
                      "chosen": true,
                      "use_tmp_table": true
                    }
                  ] /* considered_access_paths */
                } /* best_access_path */,
                "condition_filtering_pct": 100,
                "rows_for_plan": 90,
                "cost_for_plan": 40.76,
                "sort_cost": 90,
                "new_cost_for_plan": 130.76,
                "chosen": true
              }
            ] /* considered_execution_plans */
          },
          {
            "attaching_conditions_to_tables": {
              "original_condition": "((`t1`.`a` > 900) and (`t1`.`b` > 910))",
              "attached_conditions_computation": [
              ] /* attached_conditions_computation */,
              "attached_conditions_summary": [
                {
                  "table": "`t1`",
                  "attached": "((`t1`.`a` > 900) and (`t1`.`b` > 910))"
                }
              ] /* attached_conditions_summary */
            } /* attaching_conditions_to_tables */
          },
          {
            "optimizing_distinct_group_by_order_by": {
              "simplifying_order_by": {
                "original_clause": "`t1`.`a`",
                "items": [
                  {
                    "item": "`t1`.`a`"
                  }
                ] /* items */,
                "resulting_clause_is_simple": true,
                "resulting_clause": "`t1`.`a`"
              } /* simplifying_order_by */
            } /* optimizing_distinct_group_by_order_by */
          },
          {
            "reconsidering_access_paths_for_index_ordering": {
              "clause": "ORDER BY",
              "steps": [
              ] /* steps */,
              "index_order_summary": {
                "table": "`t1`",
                "index_provides_order": false,
                "order_direction": "undefined",
                "index": "idx_b",
                "plan_changed": false
              } /* index_order_summary */
            } /* reconsidering_access_paths_for_index_ordering */
          },
          {
            "finalizing_table_conditions": [
              {
                "table": "`t1`",
                "original_table_condition": "((`t1`.`a` > 900) and (`t1`.`b` > 910))",
                "final_table_condition   ": "((`t1`.`a` > 900) and (`t1`.`b` > 910))"
              }
            ] /* finalizing_table_conditions */
          },
          {
            "refine_plan": [
              {
                "table": "`t1`",
                "pushed_index_condition": "(`t1`.`b` > 910)",
                "table_condition_attached": "(`t1`.`a` > 900)"
              }
            ] /* refine_plan */
          },
          {
            "considering_tmp_tables": [
              {
                "adding_sort_to_table": "t1"
              } /* filesort */
            ] /* considering_tmp_tables */
          }
        ] /* steps */
      } /* join_optimization */
    },
    {
      "join_execution": {
        "select#": 1,
        "steps": [
          {
            "sorting_table": "t1",
            "filesort_information": [
              {
                "direction": "asc",
                "expression": "`t1`.`a`"
              }
            ] /* filesort_information */,
            "filesort_priority_queue_optimization": {
              "usable": false,
              "cause": "not applicable (no LIMIT)"
            } /* filesort_priority_queue_optimization */,
            "filesort_execution": [
            ] /* filesort_execution */,
            "filesort_summary": {
              "memory_available": 262144,
              "key_size": 9,
              "row_size": 32,
              "max_rows_per_buffer": 90,
              "num_rows_estimate": 90,
              "num_rows_found": 90,
              "num_initial_chunks_spilled_to_disk": 0,
              "peak_memory_used": 33792,
              "sort_algorithm": "std::sort",
              "unpacked_addon_fields": "skip_heuristic",
              "sort_mode": "<fixed_sort_key, additional_fields>"
            } /* filesort_summary */
          }
        ] /* steps */
      } /* join_execution */
    }
  ] /* steps */
}
MISSING_BYTES_BEYOND_MAX_MEM_SIZE: 0
          INSUFFICIENT_PRIVILEGES: 0

4 关闭trace功能

set session optimizer_trace="enabled=off";

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/686056.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

ClickHouse-简单了解

文章目录 前言数据库引擎数据表引擎Log 系列Integration 系列Special 系列MergeTree 系列 ClickHouse 数据类型ClickHouse 常用的函数 前言 什么是 ClickHouse&#xff1f;简单来说它是一个高性能&#xff0c;面向列的SQL数据库管理系统&#xff08;DBMS&#xff09;&#xff…

嵌入式知识分享——GDB程序调试方法说明

前 言 本指导文档适用开发环境&#xff1a; Windows开发环境&#xff1a;Windows 7 64bit、Windows 10 64bit Linux开发环境&#xff1a;Ubuntu 18.04.4 64bit 虚拟机&#xff1a;VMware15.1.0 U-Boot&#xff1a;U-Boot-2020.04 Kernel&#xff1a;Linux-5.4.70 Linux…

接口调用重放测试-业务安全测试实操(21)

接口调用重放测试。 接口调用遍历测试 接口调用重放测试 测试原理和方法 在短信、邮件调用业务或生成业务数据环节中,如短信验证码、邮件验证码、订单生成、评论提交等,对业务环节进行调用(重放) 测试。如果业务经过调用(重放) 后多次生成有效的业务或数据结果,可判断为存在…

PMP®证书增持 CSPM-2证书,哪里办理?

2023年6月起&#xff0c;持有PMP证书的朋友可以直接增持一个同等级证书CSPM-2&#xff0c;不用重新考试&#xff0c;不用重新学习&#xff0c;原PMP证书不影响正常使用&#xff0c;相当于多了一个国标项目管理领域的证书。 第一步准备资料 1、填写能力评价表 2、提供2张2寸蓝底…

在 Jetson Nano 上安装 ncnn 深度学习框架。

Install ncnn deep learning framework on a Jetson Nano. Introduction.RTTI.CMake 3.18.4.Dependencies.Benchmark.Introduction. 本页面将指导您在 Jetson Nano 上安装腾讯的 ncnn 框架。由于 ncnn 框架面向移动设备(例如 Android 手机),因此它不支持 CUDA。然而,大多数…

考虑储能的电价套利收益模型研究(Matlab代码实现)

&#x1f4a5;&#x1f4a5;&#x1f49e;&#x1f49e;欢迎来到本博客❤️❤️&#x1f4a5;&#x1f4a5; &#x1f3c6;博主优势&#xff1a;&#x1f31e;&#x1f31e;&#x1f31e;博客内容尽量做到思维缜密&#xff0c;逻辑清晰&#xff0c;为了方便读者。 ⛳️座右铭&a…

C语言笔记-1 编译过程字节数

文章目录 C 基础语法注意 C 其他知识点编译过程编译器数据模型区别32/64位机器中&#xff0c;各数据类型所占位数assert() 断言&#xff08;宏&#xff09;用法总结与注意事项 C 基础语法 注意 if(a表达式) 判断的就是a的值&#xff0c;而不是判断这个赋值操作的成功与否。 查…

项目经理告诉你,项目管理的基本原则

张伟初升为项目经理&#xff0c;正面临着职业生涯中的挑战。他意识到项目经理的责任是复杂而艰巨的&#xff0c;因此在工作中经常犯错。他发现自己的表达不够清晰&#xff0c;思维混乱&#xff1b;花费大量时间制作的文字记录重点不突出&#xff0c;缺乏逻辑。这些问题破坏了他…

韶音open fit开放式耳机怎么样?和南卡OE Pro相比哪个值得入手的呢?

最近南卡新上线了一款南卡OE Pro&#xff0c;官方宣称佩戴上0压无感&#xff0c;是音质体验最好的耳机&#xff0c;究竟有没有这么好用呢&#xff1f;正好我手头上也有了南卡OE Pro&#xff0c;试用了几天&#xff0c;那么下面我就来给大家对比一下耳机圈内这两款热门的开放式耳…

AI智能服务未来可能的场景

一、产业结构 ChatGPT大模型技术变革加速人工智能产业的变迁 1.投资热 2.产业结构&#xff1a;硬件-云平台-智能应用-应用提供 智能服务产业未来会是一个从算力到服务分发全流程的结构 二、Al智能无处不在的未来&#xff0c;产业将如何演变&#xff1f; 1.技术&#xff1a;…

【正点原子STM32连载】 第四十二章 DS18B20数字温度传感器实验 摘自【正点原子】STM32F103 战舰开发指南V1.2

1&#xff09;实验平台&#xff1a;正点原子stm32f103战舰开发板V4 2&#xff09;平台购买地址&#xff1a;https://detail.tmall.com/item.htm?id609294757420 3&#xff09;全套实验源码手册视频下载地址&#xff1a; http://www.openedv.com/thread-340252-1-1.html# 第四…

IEEE Vis会议内容整理

IEEE Vis 2017 IEEE 2017的VIS会议主题按论文的类型划分为三类&#xff1a;可视分析&#xff08;VAST&#xff09;、信息可视化&#xff08;InfoVis&#xff09;、科学可视化&#xff08;SciVis&#xff09;。因为可视化研究的涉及的方向越来越多&#xff0c;已超出了这三个主…

python爬虫学习简记

目录 页面结构的简单认识 爬虫概念理解 urllib库使用 爬虫解析工具xpath JsonPath Selenium requests基本使用 scrapy 页面结构的简单认识 如图是我们在pycharm中创建一个HTML文件后所看到的内容 这里我们需要认识的是上图的代码结构&#xff0c;即html标签包含了hea…

13、Nginx高级之高级模块(geoip_module)

一、ngx_http_geoip_module模块 ngx_http_geoip_module模块使用预编译的MaxMind数据库&#xff0c;根据客户端IP地址创建变量值 &#xff0c;读取ip所在地信息。 当使用支持IPv6的数据库(1.3.12, 1.2.7)时&#xff0c;IPv4地址被查找为IPv4映射的IPv6地址。 默认情况下不构建此…

聚焦数字能源供给侧和需求侧,龙讯旷腾出席2023全球数字能源展

本月初&#xff0c;深圳市人民政府新闻办召开2023全球数字能源展新闻发布会&#xff0c;宣布本次展会将于6月29日-7月2日在深圳会展中心&#xff08;福田馆&#xff09;举办。此次展会将聚焦数字能源供给侧和需求侧&#xff0c;着力打造数字能源领域集专业性、实践性、国际性和…

打造智能公路工程:BIM+GIS可视化管理平台的应用

摘要&#xff1a; 本文研究了BIM技术在交通基础设施领域的应用现状&#xff0c;并探索了BIM与GIS技术的关键融合方法&#xff0c;研发了BIMGIS可视化管理平台&#xff0c;并通过实际项目应用验证方案的可行性。研究表明&#xff0c;BIM与GIS的融合技术具有广泛的应用价值&…

人人都能生成火爆全网的最不像二维码的二维码

最近有人展示了使用 Stable Diffusion 创建的艺术二维码。这些二维码是使用定制训练的 ControlNet模型生成的。 但是操作门槛有点高。 你需要 GPU&#xff0c;还需要学习如何使用 Stable Diffusion。 现在有一款非常无脑的产品&#xff0c;使用这个产品来创建艺术二维码&…

【算法题】算法之动态规划系列(基础篇)

算法之动态规划系列&#xff08;基础篇&#xff09; 一、前置基础二、题目-- 爬楼梯2.1、思路2.2 代码实现 三、题目--杨辉三角3.1、思路3.2、代码实现 四、题目--买卖股票的最佳时机4.1、思路4.2、代码实现4.3、优化 五、比特位计数5.1、思路5.2、代码实现&#xff08;最高有效…

大数据从0到1的完美落地之sqoop命令执行

Sqoop命令执行 常见命令执行参数 通过Sqoop加不同参数可以执行导入导出,通过sqoop help 可以查看常见的命令行 #常见Sqoop参数 [rootqianfeng01 sqoop-1.4.7] sqoop helpcodegen Generate code to interact with database recordscreate-hive-table Import a ta…

DC-DC降压恒流芯片 12-110V 9V/1A AP2400 LED汽车摩托车灯驱动IC

1,方案来源&#xff1a;深圳市世微半导体有限公司 2&#xff0c;产品BOM表&#xff1a;输入 12-100V 输出9V 0.9A 3&#xff0c;产品线路图&#xff1a;输入 12-100V 输出9V 0.9A 4&#xff0c;产品介绍 AP2400 是一款 PWM 工作模式, 率、外围简单、外驱功率管&#xff0…