我并不这么看。

友情提醒:本文建议在PC端阅读。

徐春阳老师发文爆MySQL 8.0 hash join有重大缺陷。

文章核心观点如下:多表(比如3个个表)join时,只会简单的把表数据量小的放在前面作为驱动表,大表放在最后面,从而导致可能产生极大结果集的笛卡尔积,甚至耗尽CPU和磁盘空间。

就此现象,我也做了个测试。

1. 利用TPC-H工具准备测试环境

TPC-H工具在这里下载 http://www.tpc.org/tpch/default5.asp。默认并不支持MySQL,需要自己手动做些调整,参见 https://imysql.com/2012/12/21/tpch-for-mysql-manual.html。

在本案中,我指定的 Scale Factor 参数是10,即:

    1. [root@yejr.run dbgen]# ./dbgen -10 && ls -*tbl
      1. -rw-r--r-- 1 root root  244847642 Apr 14 09:52 customer.tbl
        1. -rw-r--r-- 1 root root 7775727688 Apr 14 09:52 lineitem.tbl
          1. -rw-r--r-- 1 root root       2224 Apr 14 09:52 nation.tbl
            1. -rw-r--r-- 1 root root 1749195031 Apr 14 09:52 orders.tbl
              1. -rw-r--r-- 1 root root  243336157 Apr 14 09:52 part.tbl
                1. -rw-r--r-- 1 root root 1204850769 Apr 14 09:52 partsupp.tbl
                  1. -rw-r--r-- 1 root root        389 Apr 14 09:52 region.tbl
                    1. -rw-r--r-- 1 root root   14176368 Apr 14 09:52 supplier.tbl
                  1.  

                  2. 创建测试表,导入测试数据。

                  查看几个表的数据量分别是:

                    1. +----------+------------+----------+----------------+-------------+--------------+
                      1. | Name     | Row_format | Rows     | Avg_row_length | Data_length | Index_length |
                        1. +----------+------------+----------+----------------+-------------+--------------+
                          1. | customer | Dynamic    |  1476605 |            197 |   291258368 |            0 |
                            1. | lineitem | Dynamic    | 59431418 |            152 |  9035579392 |            0 |
                              1. | nation   | Dynamic    |       25 |            655 |       16384 |            0 |
                                1. | orders   | Dynamic    | 14442405 |            137 |  1992294400 |            0 |
                                  1. | part     | Dynamic    |  1980917 |            165 |   327991296 |            0 |
                                    1. | partsupp | Dynamic    |  9464104 |            199 |  1885339648 |            0 |
                                      1. | region   | Dynamic    |        5 |           3276 |       16384 |            0 |
                                        1. | supplier | Dynamic    |    99517 |            184 |    18366464 |            0 |
                                          1. +----------+------------+----------+----------------+-------------+--------------+
                                        1.  

                                        提醒:几个测试表都不要加任何索引,包括主键,上表中 Index_length 的值均为0。

                                        3. 运行测试SQL

                                        本案选用的MySQL版本是8.0.19:

                                          1. [root@yejr.run]> \s
                                            1. ...
                                              1. Server version:         8.0.19-commercial MySQL Enterprise Server - Commercial
                                                1. ...
                                              1.  

                                              徐老师是在用TPC-H中的Q5时遇到的问题,本案也同样选择这个SQL。

                                              不过,本案主要测试Hash Join,因此去掉了其中的GROUP BY和ORDER BY子句

                                              先看下执行计划吧,都是全表扫描,好可怕...

                                                1. [root@yejr.run]> desc select count(*)
                                                  1. -> from
                                                    1. ->     customer,
                                                      1. ->     orders,
                                                        1. ->     lineitem,
                                                          1. ->     supplier,
                                                            1. ->     nation,
                                                              1. ->     region
                                                                1. -> where
                                                                  1. ->     c_custkey = o_custkey
                                                                    1. ->     and l_orderkey = o_orderkey
                                                                      1. ->     and l_suppkey = s_suppkey
                                                                        1. ->     and c_nationkey = s_nationkey
                                                                          1. ->     and s_nationkey = n_nationkey
                                                                            1. ->     and n_regionkey = r_regionkey
                                                                              1. ->     and r_name = 'AMERICA'
                                                                                1. ->     and o_orderdate >= date '1993-01-01'
                                                                                  1. ->     and o_orderdate < date '1993-01-01' + interval '1' year;
                                                                                    1. +----------+------+----------+----------+----------------------------------------------------+
                                                                                      1. | table    | type | rows     | filtered | Extra                                              |
                                                                                        1. +----------+------+----------+----------+----------------------------------------------------+
                                                                                          1. | region   | ALL  |        5 |    20.00 | Using where                                        |
                                                                                            1. | nation   | ALL  |       25 |    10.00 | Using where; Using join buffer (Block Nested Loop) |
                                                                                              1. | supplier | ALL  |    98705 |    10.00 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                1. | customer | ALL  |  1485216 |    10.00 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                  1. | orders   | ALL  | 14932433 |     1.11 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                    1. | lineitem | ALL  | 59386314 |     1.00 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                      1. +----------+------+----------+----------+----------------------------------------------------+
                                                                                                    1.  

                                                                                                    加上 format=tree 再看下(真壮观啊。。。)

                                                                                                      1. *************************** 1. row ***************************
                                                                                                        1. EXPLAIN: -> Aggregate: count(0)
                                                                                                          1. -> Inner hash join (lineitem.L_SUPPKEY = supplier.S_SUPPKEY), (lineitem.L_ORDERKEY = orders.O_ORDERKEY)  (cost=40107736685515472896.00 rows=4010763818487343104)
                                                                                                            1.     -> Table scan on lineitem  (cost=0.07 rows=59386314)
                                                                                                              1.     -> Hash
                                                                                                                1.         -> Inner hash join (orders.O_CUSTKEY = customer.C_CUSTKEY)  (cost=60799566599072.12 rows=6753683238538)
                                                                                                                  1.             -> Filter: ((orders.O_ORDERDATE >= DATE'1993-01-01') and (orders.O_ORDERDATE < <cache>((DATE'1993-01-01' + interval '1' year))))  (cost=0.16 rows=165883)
                                                                                                                    1.                 -> Table scan on orders  (cost=0.16 rows=14932433)
                                                                                                                      1.             -> Hash
                                                                                                                        1.                 -> Inner hash join (customer.C_NATIONKEY = nation.N_NATIONKEY)  (cost=3664985889.79 rows=3664956624)
                                                                                                                          1.                     -> Table scan on customer  (cost=0.79 rows=1485216)
                                                                                                                            1.                     -> Hash
                                                                                                                              1.                         -> Inner hash join (supplier.S_NATIONKEY = nation.N_NATIONKEY)  (cost=24976.50 rows=24676)
                                                                                                                                1.                             -> Table scan on supplier  (cost=513.52 rows=98705)
                                                                                                                                  1.                             -> Hash
                                                                                                                                    1.                                 -> Inner hash join (nation.N_REGIONKEY = region.R_REGIONKEY)  (cost=3.50 rows=3)
                                                                                                                                      1.                                     -> Table scan on nation  (cost=0.50 rows=25)
                                                                                                                                        1.                                     -> Hash
                                                                                                                                          1.                                         -> Filter: (region.R_NAME = 'AMERICA')  (cost=0.75 rows=1)
                                                                                                                                            1.                                             -> Table scan on region  (cost=0.75 rows=5)
                                                                                                                                          1.  

                                                                                                                                          看起来的确是把最小的表放在最前面,把最大的放在最后面。

                                                                                                                                          在开始跑之前,我们先看一眼手册中关于Hash Join的描述,其中有一段是这样的:

                                                                                                                                            1. Memory usage by hash joins can be controlled using the join_buffer_size
                                                                                                                                              1. system variable; a hash join cannot use more memory than this amount. 
                                                                                                                                                1. When the memory required for a hash join exceeds the amount available, 
                                                                                                                                                  1. MySQL handles this by using files on disk. If thishappens, you should 
                                                                                                                                                    1. be aware that the join may not succeed if a hash join cannot fit into 
                                                                                                                                                      1. memory and it creates more files than set for open_files_limit. To avoid 
                                                                                                                                                        1. such problems, make either of the following changes:
                                                                                                                                                            1. - Increase join_buffer_size so that the hash join does not spill over to disk.
                                                                                                                                                              1. - Increase open_files_limit.
                                                                                                                                                            1.  

                                                                                                                                                            简言之,当 join_buffer_size 不够时,会在hash join的过程中转储大量的磁盘表(把一个hash表切分成多个小文件放在磁盘上,再逐个读入内存进行hash join),因此建议加大 join_buffer_size,或者加大 open_files_limit 上限

                                                                                                                                                            所以,正式开跑前,我先把join_buffer_size调大到1GB,并顺便看下其他几个参数值:

                                                                                                                                                              1. [root@yejr.run]> select @@join_buffer_size,  @@tmp_table_size,  @@innodb_buffer_pool_size;
                                                                                                                                                                1. +--------------------+------------------+---------------------------+
                                                                                                                                                                  1. | @@join_buffer_size | @@tmp_table_size | @@innodb_buffer_pool_size |
                                                                                                                                                                    1. +--------------------+------------------+---------------------------+
                                                                                                                                                                      1. |         1073741824 |         16777216 |               10737418240 |
                                                                                                                                                                        1. +--------------------+------------------+---------------------------+
                                                                                                                                                                      1.  

                                                                                                                                                                      并且为了保险起见,在执行SQL时也用 SET_VAR(8.0新特性) 设置了 join_bufer_size,走起。

                                                                                                                                                                      好在最后这个SQL有惊无险的执行成功,总耗时2911秒。

                                                                                                                                                                      1. # Query_time: 2911.426483  Lock_time: 0.000251 Rows_sent: 1  Rows_examined: 76586082

                                                                                                                                                                      当然了,这个SQL执行过程中的代价也确实非常大,产生了大量的磁盘(不可见)临时文件。

                                                                                                                                                                      我每隔几秒钟就统计一次所有临时文件的总大小,并且观察磁盘空间剩余量。

                                                                                                                                                                      /data 分区最开始可用空间是 373GB,这条SQL在峰值吃掉了约170GB,着实可怕。

                                                                                                                                                                        1. # 刚开始
                                                                                                                                                                          1. /dev/vdb       524032000 132967368 391064632  26% /data
                                                                                                                                                                              1. # 峰值时
                                                                                                                                                                                1. /dev/vdb       524032000 319732288 204299712  62% /data
                                                                                                                                                                              1.  

                                                                                                                                                                              CPU的负载从监控上看倒是还算能接受,最高约38.4%

                                                                                                                                                                              4. 补充测试

                                                                                                                                                                              上面的测试中,优化器"擅自"修改了驱动顺序,那加上straight_join看看会怎样

                                                                                                                                                                                1. [root@yejr.run]> EXPLAIN STRAIGHT_JOIN select count(*)
                                                                                                                                                                                  1. from
                                                                                                                                                                                    1.     customer straight_join 
                                                                                                                                                                                      1.     orders  straight_join 
                                                                                                                                                                                        1.     lineitem  straight_join 
                                                                                                                                                                                          1.     supplier  straight_join 
                                                                                                                                                                                            1.     nation  straight_join 
                                                                                                                                                                                              1.     region
                                                                                                                                                                                                1. where
                                                                                                                                                                                                  1.     c_custkey = o_custkey
                                                                                                                                                                                                    1.     and l_orderkey = o_orderkey
                                                                                                                                                                                                      1.     and l_suppkey = s_suppkey
                                                                                                                                                                                                        1.     and c_nationkey = s_nationkey
                                                                                                                                                                                                          1.     and s_nationkey = n_nationkey
                                                                                                                                                                                                            1.     and n_regionkey = r_regionkey
                                                                                                                                                                                                              1.     and r_name = 'AMERICA'
                                                                                                                                                                                                                1.     and o_orderdate >= date '1993-01-01'
                                                                                                                                                                                                                  1.     and o_orderdate < date '1993-01-01' + interval '1' year;
                                                                                                                                                                                                                    1. +----------+----------+----------+----------------------------------------------------+
                                                                                                                                                                                                                      1. | table    | rows     | filtered | Extra                                              |
                                                                                                                                                                                                                        1. +----------+----------+----------+----------------------------------------------------+
                                                                                                                                                                                                                          1. | customer |  1485216 |   100.00 | NULL                                               |
                                                                                                                                                                                                                            1. | orders   | 14932433 |     1.11 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                                                                                                                                              1. | lineitem | 59386314 |    10.00 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                                                                                                                                                1. | supplier |    98705 |     1.00 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                                                                                                                                                  1. | nation   |       25 |    10.00 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                                                                                                                                                    1. | region   |        5 |    20.00 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                                                                                                                                                      1. +----------+----------+----------+----------------------------------------------------+
                                                                                                                                                                                                                                          1. #format=tree模式下
                                                                                                                                                                                                                                            1. | -> Aggregate: count(0)
                                                                                                                                                                                                                                              1.     -> Inner hash join (region.R_REGIONKEY = nation.N_REGIONKEY)  (cost=204565289351994015744.00 rows=8021527039324357632)
                                                                                                                                                                                                                                                1.         -> Filter: (region.R_NAME = 'AMERICA')  (cost=0.00 rows=1)
                                                                                                                                                                                                                                                  1.             -> Table scan on region  (cost=0.00 rows=5)
                                                                                                                                                                                                                                                    1.         -> Hash
                                                                                                                                                                                                                                                      1.             -> Inner hash join (nation.N_NATIONKEY = customer.C_NATIONKEY)  (cost=200554431911464173568.00 rows=-9223372036854775808)
                                                                                                                                                                                                                                                        1.                 -> Table scan on nation  (cost=0.00 rows=25)
                                                                                                                                                                                                                                                          1.                 -> Hash
                                                                                                                                                                                                                                                            1.                     -> Inner hash join (supplier.S_NATIONKEY = customer.C_NATIONKEY), (supplier.S_SUPPKEY = lineitem.L_SUPPKEY)  (cost=160446786739199049728.00 rows=-9223372036854775808)
                                                                                                                                                                                                                                                              1.                         -> Table scan on supplier  (cost=0.00 rows=98705)
                                                                                                                                                                                                                                                                1.                         -> Hash
                                                                                                                                                                                                                                                                  1.                             -> Inner hash join (lineitem.L_ORDERKEY = orders.O_ORDERKEY)  (cost=16253562153466286.00 rows=16253535510797654)
                                                                                                                                                                                                                                                                    1.                                 -> Table scan on lineitem  (cost=0.01 rows=59386314)
                                                                                                                                                                                                                                                                      1.                                 -> Hash
                                                                                                                                                                                                                                                                        1.                                     -> Inner hash join (orders.O_CUSTKEY = customer.C_CUSTKEY)  (cost=24638698342.46 rows=2736915995)
                                                                                                                                                                                                                                                                          1.                                         -> Filter: ((orders.O_ORDERDATE >= DATE'1993-01-01') and (orders.O_ORDERDATE < <cache>((DATE'1993-01-01' + interval '1' year))))  (cost=0.94 rows=165883)
                                                                                                                                                                                                                                                                            1.                                             -> Table scan on orders  (cost=0.94 rows=14932433)
                                                                                                                                                                                                                                                                              1.                                         -> Hash
                                                                                                                                                                                                                                                                                1.                                             -> Table scan on customer  (cost=153126.35 rows=1485216)
                                                                                                                                                                                                                                                                              1.  

                                                                                                                                                                                                                                                                              最后实际执行耗时

                                                                                                                                                                                                                                                                                1. [root@yejr.run]> mysql> select /*+ set_var(join_buffer_size=1073741824) */
                                                                                                                                                                                                                                                                                  1.  STRAIGHT_JOIN count(*)
                                                                                                                                                                                                                                                                                    1. ...
                                                                                                                                                                                                                                                                                      1. +----------+
                                                                                                                                                                                                                                                                                        1. | count(*) |
                                                                                                                                                                                                                                                                                          1. +----------+
                                                                                                                                                                                                                                                                                            1. |    72033 |
                                                                                                                                                                                                                                                                                              1. +----------+
                                                                                                                                                                                                                                                                                                1. 1 row in set (4 min 12.31 sec)
                                                                                                                                                                                                                                                                                              1.  

                                                                                                                                                                                                                                                                                              这个SQL执行过程中,只产生了很少几个临时文件,影响几乎可以忽略不计的那种。

                                                                                                                                                                                                                                                                                              这次之所以会比较快,是因为 orders 表在第二顺序执行,对它还附加了WHERE条件,过滤后数据量变小了(全表1500万,过滤后227万),因此整体执行时间缩短了。

                                                                                                                                                                                                                                                                                              靠着 straight_join 拯救了危机。

                                                                                                                                                                                                                                                                                              此外,在测试的过程中,我还做过一次只有3个表的全表join,下面是执行计划

                                                                                                                                                                                                                                                                                                1. [root@yejr.run]> desc select count(*) from orders o , lineitem l, partsupp ps where
                                                                                                                                                                                                                                                                                                  1. o.O_CUSTKEY = l.L_SUPPKEY and l.L_PARTKEY = ps.PS_AVAILQTY;
                                                                                                                                                                                                                                                                                                    1. +-------+----------+----------+----------------------------------------------------+
                                                                                                                                                                                                                                                                                                      1. | table | rows     | filtered | Extra                                              |
                                                                                                                                                                                                                                                                                                        1. +-------+----------+----------+----------------------------------------------------+
                                                                                                                                                                                                                                                                                                          1. | ps    |  7697248 |   100.00 | NULL                                               |
                                                                                                                                                                                                                                                                                                            1. | l     | 59386314 |    10.00 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                                                                                                                                                                                                                              1. | o     | 14932433 |    10.00 | Using where; Using join buffer (Block Nested Loop) |
                                                                                                                                                                                                                                                                                                                1. +-------+----------+----------+----------------------------------------------------+
                                                                                                                                                                                                                                                                                                              1.  

                                                                                                                                                                                                                                                                                                              在这个执行计划中,就不会出现徐老师说的问题,不再简单的把最小的表作为驱动表,最大的表放在最后面。

                                                                                                                                                                                                                                                                                                              这条SQL耗时304秒,还好吧。

                                                                                                                                                                                                                                                                                                              1. # Query_time: 304.889654  Lock_time: 0.000178 Rows_sent: 1  Rows_examined: 82986052

                                                                                                                                                                                                                                                                                                              写在最后

                                                                                                                                                                                                                                                                                                              在前几天我的文章《MySQL没前途了吗?》中,其实已经说了MySQL目前不适合做OLAP业务,即便有Hash Join也不行,毕竟其适用的场景很有限。

                                                                                                                                                                                                                                                                                                              本案中几个表完全没任何索引,这属于很极端的场景,不应该允许此类现象发生

                                                                                                                                                                                                                                                                                                              另外,在已经明确需要走Hash Join的情况下,就应该人为干预,提前加大join_buffer_size,减少执行过程中生成的临时文件

                                                                                                                                                                                                                                                                                                              当然了,如果遇到多表JOIN不符合预期时,还可以用STRAIGHT_JOIN强制设定驱动顺序,也可以规避这个问题。

                                                                                                                                                                                                                                                                                                              不过,MySQL在偏OLAP场景上的性能的确还有很大提升空间,对此我持谨慎乐观态度,比如把ClickHouse给直接收编了呢 :)

                                                                                                                                                                                                                                                                                                              对于本文,我心里不是很有底气,毕竟不是啥源码大神,如果理解上的错误,还请留言指正,不吝感激。

                                                                                                                                                                                                                                                                                                              SQL优化大神郑松华对本文亦有贡献,谢谢二位老师。

                                                                                                                                                                                                                                                                                                              全文完。


                                                                                                                                                                                                                                                                                                              由叶老师主讲的知数堂「MySQL优化课」第17期已发车,课程从第15期就升级成MySQL 8.0版本了,现在上车刚刚好,扫码开启MySQL 8.0的修行之旅吧。


                                                                                                                                                                                                                                                                                                              另外,叶老师在腾讯课堂《MySQL性能优化》精编版第一期已完结,本课程讲解读几个MySQL性能优化的核心要素:合理利用索引,降低锁影响,提高事务并发度

                                                                                                                                                                                                                                                                                                              下面是自动拼团的二维码,组团价仅需78元

                                                                                                                                                                                                                                                                                                              文章知识点与官方知识档案匹配,可进一步学习相关知识
                                                                                                                                                                                                                                                                                                              MySQL入门技能树连接查询INNER JOIN58014 人正在系统学习中

                                                                                                                                                                                                                                                                                                              【转帖】MySQL 8.0 hash join有重大缺陷?的更多相关文章

                                                                                                                                                                                                                                                                                                              1. mysql 8.0.18 hash join测试(内外网首文)

                                                                                                                                                                                                                                                                                                                CREATE TABLE COLUMNS_hj as select * from information_schema.`COLUMNS`; INSERT INTO COLUMNS_hj SELECT ...

                                                                                                                                                                                                                                                                                                              2. MySQL8.0 新特性 Hash Join

                                                                                                                                                                                                                                                                                                                概述&背景 MySQL一直被人诟病没有实现HashJoin,最新发布的8.0.18已经带上了这个功能,令人欣喜.有时候在想,MySQL为什么一直不支持HashJoin呢?我想可能是因为MySQ ...

                                                                                                                                                                                                                                                                                                              3. 如何干涉MySQL优化器使用hash join

                                                                                                                                                                                                                                                                                                                GreatSQL社区原创内容未经授权不得随意使用,转载请联系小编并注明来源. GreatSQL是MySQL的国产分支版本,使用上与MySQL一致. 前言 实验 总结 前言 数据库的优化器相当于人类的大 ...

                                                                                                                                                                                                                                                                                                              4. MySQL与MariaDB核心特性比较详细版v1.0(覆盖mysql 8.0/mariadb 10.3,包括优化、功能及维护)

                                                                                                                                                                                                                                                                                                                注:本文严禁任何形式的转载,原文使用word编写,为了大家阅读方便,提供pdf版下载. MySQL与MariaDB主要特性比较详细版v1.0(不含HA).pdf 链接:https://pan.baid ...

                                                                                                                                                                                                                                                                                                              5. MySQL 8.0 新特性梳理汇总

                                                                                                                                                                                                                                                                                                                一 历史版本发布回顾 从上图可以看出,基本遵循 5+3+3 模式 5---GA发布后,5年 就停止通用常规的更新了(功能不再更新了): 3---企业版的,+3年功能不再更新了: 3 ---完全停止更新 ...

                                                                                                                                                                                                                                                                                                              6. mysql 8.0.28 查询语句执行顺序实测结果

                                                                                                                                                                                                                                                                                                                TL;NRs 根据实测结果,MySQL8.0.28 中 SQL 语句的执行顺序为: (8) SELECT (5) DISTINCT <select_list> (1) FROM <l ...

                                                                                                                                                                                                                                                                                                              7. SQL Tuning 基础概述06 - 表的关联方式:Nested Loops Join,Merge Sort Join & Hash Join

                                                                                                                                                                                                                                                                                                                nested loops join(嵌套循环)   驱动表返回几条结果集,被驱动表访问多少次,有驱动顺序,无须排序,无任何限制. 驱动表限制条件有索引,被驱动表连接条件有索引. hints:use_n ...

                                                                                                                                                                                                                                                                                                              8. Sort merge join、Nested loops、Hash join(三种连接类型)

                                                                                                                                                                                                                                                                                                                目前为止,典型的连接类型有3种: Sort merge join(SMJ排序-合并连接):首先生产driving table需要的数据,然后对这些数据按照连接操作关联列进行排序:然后生产probed ...

                                                                                                                                                                                                                                                                                                              9. 视图合并、hash join连接列数据分布不均匀引发的惨案

                                                                                                                                                                                                                                                                                                                表大小 SQL> select count(*) from agent.TB_AGENT_INFO; COUNT(*) ---------- 1751 SQL> select count( ...

                                                                                                                                                                                                                                                                                                              10. 最新电Call记录统计-full hash join用法

                                                                                                                                                                                                                                                                                                                declare @time datetime set @time='2016-07-01' --最新的电Call记录统计查询--SELECT t.zuoxi1,t.PhoneCount,t.Phone ...

                                                                                                                                                                                                                                                                                                              随机推荐

                                                                                                                                                                                                                                                                                                              1. 第八部分_Shell脚本之综合案例实训

                                                                                                                                                                                                                                                                                                                综合案例 1. 实战案例1 ㈠ 具体需求 写一个脚本,将跳板机上yunwei用户的公钥推送到局域网内可以ping通的所有机器上 说明:主机和密码文件已经提供 10.1.1.1:123456 10.1. ...

                                                                                                                                                                                                                                                                                                              2. 谁说AI看不懂视频?

                                                                                                                                                                                                                                                                                                                摘要:人工智能在视觉领域发展趋于成熟,基于人工智能的视频内容分析能从根本上解决传统内容分析方法性能低下的问题,视频分析开启2.0智能时代. 视频数据量激增,数据处理和内容运营成本居高不下 云计算.大数 ...

                                                                                                                                                                                                                                                                                                              3. 如何通过一个SDK轻松搞定人脸识别,拯救初入职场的程序猿

                                                                                                                                                                                                                                                                                                                摘要:看一个SDK如何拯救初入职场的程序猿小Hi- [职场初体验] 时间过得真快,距离上次给小Hi安排"人脸识别"的开发任务(话接上期:[快速玩转华为云开发]小Hi拍了拍你,基于华 ...

                                                                                                                                                                                                                                                                                                              4. 如何处理分析Flink作业反压的问题?

                                                                                                                                                                                                                                                                                                                摘要:反压是 Flink 应用运维中常见的问题,它不仅意味着性能瓶颈还可能导致作业的不稳定性. 反压(backpressure)是实时计算应用开发中,特别是流式计算中,十分常见的问题.反压意味着数据管 ...

                                                                                                                                                                                                                                                                                                              5. 超详细教程:SpringBoot整合MybatisPlus

                                                                                                                                                                                                                                                                                                                摘要:本文为大家带来SpringBoot整合MybatisPlus的教程,实现SpringBoot项目中依赖数据模块进行数据操作,并进行简单测试. 本文分享自华为云社区<SpringBoot整合 ...

                                                                                                                                                                                                                                                                                                              6. 华为云PB级数据库GaussDB(for Redis)揭秘第十期:GaussDB(for Redis)迁移系列(上)

                                                                                                                                                                                                                                                                                                                摘要:本期将详细介绍社区版Redis.kvrocks和Pika到GaussDB(for Redis)的迁移 本文分享自华为云社区<华为云PB级数据库GaussDB(for Redis)揭秘第十期 ...

                                                                                                                                                                                                                                                                                                              7. Python图像处理丨如何调用OpenCV绘制直方图

                                                                                                                                                                                                                                                                                                                摘要:本篇文章主要讲解灰度直方图的基本概念,Python调用OpenCV实现绘制图像直方图. 本文分享自华为云社区<[Python图像处理] 十一.灰度直方图概念及OpenCV绘制直方图> ...

                                                                                                                                                                                                                                                                                                              8. 2023 年如何将您的应用提交到 App Store

                                                                                                                                                                                                                                                                                                                您夜以继日地工作来创建您的梦想应用程序.最后,是时候向全世界宣布您的应用程序了.但不知道如何将您的应用提交到 App Store? 为您的商店获取现成的移动应用程序 将应用程序提交到 App Stor ...

                                                                                                                                                                                                                                                                                                              9. Spring解决泛型擦除的思路不错,现在它是我的了。

                                                                                                                                                                                                                                                                                                                你好呀,我是歪歪. Spring 的事件监听机制,不知道你有没有用过,实际开发过程中用来进行代码解耦简直不要太爽. 但是我最近碰到了一个涉及到泛型的场景,常规套路下,在这个场景中使用该机制看起来会很傻 ...

                                                                                                                                                                                                                                                                                                              10. Oracle 删除唯一约束

                                                                                                                                                                                                                                                                                                                1.查出有哪些约束 SELECT CONSTRAINT_NAME,CONSTRAINT_TYPE,STATUS FROM USER_CONSTRAINTS WHERE TABLE_NAME ='D_D ...