首页 > Web开发 > 详细

Kubernetes实战 高可用集群搭建,配置,运维与应用

时间:2021-03-18 21:08:34      阅读:82      评论:0      收藏:0      [点我收藏+]
download:Kubernetes实战 高可用集群搭建,配置,运维与应用

容器技术和Kubernetes重新定义了未来十年基础设施承载云原生应用的形式,Kubernetes更是将成为未来云平台的核心,是各类IT从业人员趋之若鹜的技能。

适合人群
云计算基础设施设计、开发人员
容器领域的开发人员和爱好者
Devops程序员、架构师、技术决策者等

技术储备要求
熟悉Docker容器概念与原理熟悉基本Linux操作
熟悉基本Docker命令操作
如果对容器和Kubernetes基础概念还不熟悉
函數操作
對條件字段做函數操作走不了索引。

select * from t1 where date(c) =‘2019-05-21‘;
優化:改成範圍查询

select * from t1 where c>=‘2019-05-21 00:00:00‘ and c<=‘2019-05-21 23:59:59‘;
隱式轉換
操作符與不同類型的操作對象一同運用時,就會發作類型轉換以使操作兼容。

select user_name,tele_phone from user_info where tele_phone =11111111111; / tele_phone varchar /
實践會做函數操作:

select user_name,tele_phone from user_info where cast(tele_phone as singed int) =11111111111;
優化:類型統一

select user_name,tele_phone from user_info where tele_phone =‘11111111111‘;
含糊查询
通配符在前面

select * from t1 where a like ‘%1111%‘;
優化:含糊查询必需包含條件字段前面的值

select * from t1 where a like ‘1111%‘;
範圍查询
範圍查询數據量太多,需求回表,因而不走索引。

select * from t1 where b>=1 and b <=2000;
優化:降低單次查询範圍,分屢次查询。(實践可能速度沒得快太多,倡議走索引)

select from t1 where b>=1 and b <=1000;
show profiles;
+----------+------------+------------------------------------------+
| Query_ID | Duration | Query |
+----------+------------+------------------------------------------+
| 1 | 0.00534775 | select
from t1 where b>=1 and b <=1000 |
| 2 | 0.00605625 | select * from t1 where b>=1 and b <=2000 |
+----------+------------+------------------------------------------+
2 rows in set, 1 warning (0.00 sec)
計算操作
即便是简單的計算

explain select * from t1 where b-1 =1000;
優化:將計算操作放在等號後面

explain select * from t1 where b =1000 + 1;

Kubernetes实战 高可用集群搭建,配置,运维与应用

原文:https://blog.51cto.com/15134648/2664557

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!