数据库高可用方案
缺点:1) DELETE操作不支持没有主键的表,没有主键的表在不同的节点顺序将不同2)处理事务时,会运行一个协调认证程序来保证事务的全局一致性,若该事务长时间运行,就会锁死节点中所有的相关表,导致插入卡住(这种情况和单表插入是一样的)。MHA Node运行在每台MySQL服务器上,MHA Manager会定时探测集群中的master节点,当master出现故障时,它可以自动将最新数据的slave提
低读低写并发、低数据量方案
方案一:双机高可用方案
1.数据库架构图

2.特点
一台机器A作为读写库,另一台B作为备份库;A库故障后B库作为读写库;A库恢复后A作为备库。
3.开发说明
此种情况下,数据源配置中的数据库IP地址,可采用虚拟的IP地址。虚拟IP地址由两台数据库机器上的keepalive配置,并互相检测心跳。当其中一台故障后,虚拟IP地址会自动漂移到另外一台正常的库上。
数据库的主备配置、故障排除和数据补全,需要DBA和运维人员来维护。而程序代码或配置并不需要修改。
4.适应场景
读和写都不高的场景(单表数据低于500万),双机高可用。
5.优缺点
优点是一个机器故障了可以自动切换;缺点是只有一个库在工作,读写并未分离,并发有限制。
方案二:主从结构方案
1.数据库架构图

2.特点
一台机器A作为写库,另一台B作为读库;A库故障后B库充当读写,A修复后,B库为写库,A库为读库。
3.开发说明
这种方案的实现,要借助数据库中间件Mycat来实现,Mycat的datahost配置如下(注意balance和writetype的设置)
<dataHost name="localhost1" maxCon="1000" minCon="10" balance="1" writeType="0" dbType="mysql" dbDriver="native" switchType="1" slaveThreshold="100">
<heartbeat>select user()</heartbeat>
<!--主,用于写-->
<writeHost host="hostM1" url="192.168.1.135:3306" user="root" password="123" />
<!--主2,用于读,hostM1 down了,自动切换为主,读写都可以-->
<writeHost host="hostM2" url="192.168.1.136:3306" user="root" password="123" />
</dataHost>
项目开发中,要配置Mycat数据源,并实现对Mycat数据源的数据操作。数据库A和数据库B应该互为主从。数据库的主主配置、故障排除和数据补全,依然需要DBA和运维人员来维护。
4.适应场景
读和写都不是非常高的场景(单表数据低于1000万),高可用。比方案一并发要高很多。
5.优缺点
优点是一个机器故障了可以自动切换;读写分离,并发有了很大的提升。缺点是引入了一个Mycat节点,若要高可用需要引入至少两个Mycat。常规的解决方案是引入haproxy和keepalive对mycat做集群。

高读低写并发、低数据量方案
方案三:一主多从+读写分离
1.数据库架构图

2.特点
一个主写库A多个从库,当主库A故障时,提升从库B为主写库,同时修改C、D库为B的从库。A故障修复后,作为B的从库。
3.开发说明
项目开发中需要使用Mycat作为中间件,来配置主库和从库,核心配置如下:
<dataHost name="localhost1" maxCon="1000" minCon="10" balance="1" writeType="0" dbType="mysql" dbDriver="native" switchType="1" slaveThreshold="100">
<heartbeat>select user()</heartbeat>
<!--主A,用于写-->
<writeHost host="hostM1" url="192.168.1.135:3306" user="root" password="123" />
<!—从B,用于读,hostM1 down了,自动切换为主-->
<writeHost host="hostM2" url="192.168.1.136:3306" user="root" password="123456" />
<!—从C,用于读-->
<writeHost host="hostM3" url="192.168.1.137:3306" user="root" password="123" />
<!—从D,用于读-->
<writeHost host="hostM4" url="192.168.1.138:3306" user="root" password="123" />
</dataHost>
主库A故障后,Mycat会自动把从B提升为写库。而C、D从库,则可以通过MHA等工具,自动修改其主库为B。进而实现自动切换的目地。
MHA Manager可以单独部署在一台独立的机器上管理多个master-slave集群,也可以部署在一台slave节点上。MHA Node运行在每台MySQL服务器上,MHA Manager会定时探测集群中的master节点,当master出现故障时,它可以自动将最新数据的slave提升为新的master,然后将所有其他的slave重新指向新的master。整个故障转移过程对应用程序完全透明。
MHA相关知识请参考:
http://www.cnblogs.com/gomysql/p/3675429.html
4.适应场景
该架构适合写并发不大、但是读并发大的很的场景
5.优缺点
由于配置了多个读节点,读并发的能力有了质的提高。理论上来说,读节点可以多个,可以负载很高级别的读并发。当然,Mycat依然需要设计高可用方案。
高读写并发、低数据量方案
方案四:MariaDB Galera Cluster方案
1.数据库架构图

2.特点
多个数据库,在负载均衡作用下,可同时进行写入和读取操作;各个库之间以Galera Replication的方法进行数据同步,即每个库理论上来说,数据是完全一致的。
3.开发说明
数据库读写时,只需要修改数据库读写IP为keepalive的虚拟节点即可;数据库配置方面相对比较复杂,需要引入haproxy、keepalive、Galaera等各种插件和配置。
4.适用场景
该方案适合读写并发较大、数据量不是非常大的场景。
5.优缺点点
优点:1)可以在任意节点上进行读2)自动剔除故障节点3)自动加入新节点4)真正并行的复制,基于行级5)客户端连接跟操作单数据库的体验一致。6) 同步复制,因此具有较高的性能和可靠性。
缺点:1) DELETE操作不支持没有主键的表,没有主键的表在不同的节点顺序将不同2)处理事务时,会运行一个协调认证程序来保证事务的全局一致性,若该事务长时间运行,就会锁死节点中所有的相关表,导致插入卡住(这种情况和单表插入是一样的)。2)整个集群的写入吞吐量是由最弱的节点限制,如果有一个节点变得缓慢,那么整个集群将是缓慢的。为了稳定的高性能要求,所有的节点应使用统一的硬件。3)如果DDL语句有问题将破坏集群,建议禁用。4) Mysql数据库5.7.6及之后的版本才支持此种方案。
高读写并发、高数据量方案
方案五 数据库中间件
1. 数据库架构图

2.特点
采用Mycat进行分片存储,可以解决写负载均衡和数据量过大问题;每个分片配置多个读从库,可以减少单个库的读压力。
3.开发说明
此种情况,需要配置Haproxy、keepalive和mycat集群,每个分片上又需要配置一主多从的集群。每个分片上的完整配置,具体请参考方案三,可以简单地把方案三理解为一个分片结构。因此,配置和维护量都比较大。
4.适用场景
读写并发都很大并且数据量非常大的场景。
5.优缺点
优点:终极的解决高并发高数据量的方法。
缺点:配置和维护都比较麻烦,需要的软硬件设备资源大。
https://ds.163.com/article/6a2451be71ab5215a9efd7a9/
https://ds.163.com/article/6a2451be71ab5215a9efd7a9
https://ds.163.com/article/6a2451b8b9c1757d66ac8098/
https://ds.163.com/article/6a2451b8b9c1757d66ac8098
https://ds.163.com/article/6a2451b7af819f17e3fdbc00/
https://ds.163.com/article/6a2451b7af819f17e3fdbc00
https://ds.163.com/article/6a2451b0f41c947c7a7b5ec8/
https://ds.163.com/article/6a2451b0f41c947c7a7b5ec8
https://ds.163.com/article/6a2451ac24449a69b0766860/
https://ds.163.com/article/6a2451ac24449a69b0766860
https://ds.163.com/article/6a2451abbdde6c369236dd4b/
https://ds.163.com/article/6a2451abbdde6c369236dd4b
https://ds.163.com/article/6a2451a85616a031f63cad14/
https://ds.163.com/article/6a2451a85616a031f63cad14
https://ds.163.com/article/6a2451a27cc98112b667af0a/
https://ds.163.com/article/6a2451a27cc98112b667af0a
https://ds.163.com/article/6a2451a141cbd853816a1397/
https://ds.163.com/article/6a2451a141cbd853816a1397
https://ds.163.com/article/6a2451a0934e104768540425/
https://ds.163.com/article/6a2451a0934e104768540425
https://ds.163.com/article/6a24519b24449a69b076682f/
https://ds.163.com/article/6a24519b24449a69b076682f
https://ds.163.com/article/6a24519a9e57c463fb2f7324/
https://ds.163.com/article/6a24519a9e57c463fb2f7324
https://ds.163.com/article/6a245194cc0f39423b6e2a8c/
https://ds.163.com/article/6a245194cc0f39423b6e2a8c
https://ds.163.com/article/6a245194bdde6c369236dcf9/
https://ds.163.com/article/6a245194bdde6c369236dcf9
https://ds.163.com/article/6a24518bbdde6c369236dccb/
https://ds.163.com/article/6a24518bbdde6c369236dccb
https://ds.163.com/article/6a245188af819f17e3fdbb4a/
https://ds.163.com/article/6a245188af819f17e3fdbb4a
https://ds.163.com/article/6a245182bd9cd46b72b66266/
https://ds.163.com/article/6a245182bd9cd46b72b66266
https://ds.163.com/article/6a245180f41c947c7a7b5e14/
https://ds.163.com/article/6a245180f41c947c7a7b5e14
https://ds.163.com/article/6a24517ec0c6c9700ae12f7d/
https://ds.163.com/article/6a24517ec0c6c9700ae12f7d
https://ds.163.com/article/6a24517d7d221a75e978160a/
https://ds.163.com/article/6a24517d7d221a75e978160a
https://ds.163.com/article/6a24517c934e104768540387/
https://ds.163.com/article/6a24517c934e104768540387
https://ds.163.com/article/6a24517aaf819f17e3fdbb14/
https://ds.163.com/article/6a24517aaf819f17e3fdbb14
https://ds.163.com/article/6a24517571ab5215a9efd686/
https://ds.163.com/article/6a24517571ab5215a9efd686
https://ds.163.com/article/6a245175b9c1757d66ac7fa0/
https://ds.163.com/article/6a245175b9c1757d66ac7fa0
https://ds.163.com/article/6a245171f41c947c7a7b5dbe/
https://ds.163.com/article/6a245171f41c947c7a7b5dbe
https://ds.163.com/article/6a245170af819f17e3fdbade/
https://ds.163.com/article/6a245170af819f17e3fdbade
https://ds.163.com/article/6a24517071ab5215a9efd66c/
https://ds.163.com/article/6a24517071ab5215a9efd66c
https://ds.163.com/article/6a24516e947883408b1e97b3/
https://ds.163.com/article/6a24516e947883408b1e97b3
https://ds.163.com/article/6a245165934e10476854032c/
https://ds.163.com/article/6a245165934e10476854032c
https://ds.163.com/article/6a245163f41c947c7a7b5d91/
https://ds.163.com/article/6a245163f41c947c7a7b5d91
https://ds.163.com/article/6a24515ebdde6c369236dc1b/
https://ds.163.com/article/6a24515ebdde6c369236dc1b
https://ds.163.com/article/6a24515b934e1047685402fa/
https://ds.163.com/article/6a24515b934e1047685402fa
https://ds.163.com/article/6a24515a9e57c463fb2f724e/
https://ds.163.com/article/6a24515a9e57c463fb2f724e
https://ds.163.com/article/6a24514c947883408b1e9746/
https://ds.163.com/article/6a24514c947883408b1e9746
https://ds.163.com/article/6a2451491b485e11a66beca2/
https://ds.163.com/article/6a2451491b485e11a66beca2
https://ds.163.com/article/6a24513871ab5215a9efd5a7/
https://ds.163.com/article/6a24513871ab5215a9efd5a7
https://ds.163.com/article/6a24511824449a69b0766681/
https://ds.163.com/article/6a24511824449a69b0766681
https://ds.163.com/article/6a2451121b485e11a66bebc9/
https://ds.163.com/article/6a2451121b485e11a66bebc9
https://ds.163.com/article/6a24510dcc0f39423b6e28b0/
https://ds.163.com/article/6a24510dcc0f39423b6e28b0
https://ds.163.com/article/6a24510caf819f17e3fdb99f/
https://ds.163.com/article/6a24510caf819f17e3fdb99f
https://ds.163.com/article/6a245109b5f0165310986797/
https://ds.163.com/article/6a245109b5f0165310986797
https://ds.163.com/article/6a245107cc0f39423b6e2898/
https://ds.163.com/article/6a245107cc0f39423b6e2898
https://ds.163.com/article/6a2451073ce1ee4d9c7845ec/
https://ds.163.com/article/6a2451073ce1ee4d9c7845ec
https://ds.163.com/article/6a2451071b485e11a66beb9f/
https://ds.163.com/article/6a2451071b485e11a66beb9f
https://ds.163.com/article/6a245106b9c1757d66ac7e33/
https://ds.163.com/article/6a245106b9c1757d66ac7e33
https://ds.163.com/article/6a24510641cbd853816a1148/
https://ds.163.com/article/6a24510641cbd853816a1148
https://ds.163.com/article/6a2451047d221a75e978145c/
https://ds.163.com/article/6a2451047d221a75e978145c
https://ds.163.com/article/6a24510241cbd853816a1135/
https://ds.163.com/article/6a24510241cbd853816a1135
https://ds.163.com/article/6a2451017d221a75e9781456/
https://ds.163.com/article/6a2451017d221a75e9781456
https://ds.163.com/article/6a2450feccb10e6787504f5c/
https://ds.163.com/article/6a2450feccb10e6787504f5c
https://ds.163.com/article/6a2450fdccb10e6787504f57/
https://ds.163.com/article/6a2450fdccb10e6787504f57
https://ds.163.com/article/6a2450fbcfd026003e37c311/
https://ds.163.com/article/6a2450fbcfd026003e37c311
https://ds.163.com/article/6a2450fb41cbd853816a1128/
https://ds.163.com/article/6a2450fb41cbd853816a1128
https://ds.163.com/article/6a2450f93ce1ee4d9c7845bb/
https://ds.163.com/article/6a2450f93ce1ee4d9c7845bb
https://ds.163.com/article/6a2450f6ddda263a736870c8/
https://ds.163.com/article/6a2450f6ddda263a736870c8
https://ds.163.com/article/6a2450f63ce1ee4d9c7845ad/
https://ds.163.com/article/6a2450f63ce1ee4d9c7845ad
https://ds.163.com/article/6a2450f5ddda263a736870bf/
https://ds.163.com/article/6a2450f5ddda263a736870bf
https://ds.163.com/article/6a2450d11b485e11a66beae3/
https://ds.163.com/article/6a2450d11b485e11a66beae3
https://ds.163.com/article/6a2450d0bdde6c369236da1c/
https://ds.163.com/article/6a2450d0bdde6c369236da1c
https://ds.163.com/article/6a2450ccb5f01653109866c8/
https://ds.163.com/article/6a2450ccb5f01653109866c8
https://ds.163.com/article/6a2450c8f41c947c7a7b5b92/
https://ds.163.com/article/6a2450c8f41c947c7a7b5b92
https://ds.163.com/article/6a2450c8ccb10e6787504ea3/
https://ds.163.com/article/6a2450c8ccb10e6787504ea3
https://ds.163.com/article/6a2450c57d221a75e97813b6/
https://ds.163.com/article/6a2450c57d221a75e97813b6
https://ds.163.com/article/6a2450c5cc0f39423b6e2798/
https://ds.163.com/article/6a2450c5cc0f39423b6e2798
https://ds.163.com/article/6a2450c3af819f17e3fdb88e/
https://ds.163.com/article/6a2450c3af819f17e3fdb88e
https://ds.163.com/article/6a2450c27cc98112b667ac0f/
https://ds.163.com/article/6a2450c27cc98112b667ac0f
https://ds.163.com/article/6a2450c3c0c6c9700ae12d40/
https://ds.163.com/article/6a2450c3c0c6c9700ae12d40
https://ds.163.com/article/6a2450c2ccb10e6787504e86/
https://ds.163.com/article/6a2450c2ccb10e6787504e86
https://ds.163.com/article/6a2450c071ab5215a9efd41b/
https://ds.163.com/article/6a2450c071ab5215a9efd41b
https://ds.163.com/article/6a2450ba1b485e11a66bea88/
https://ds.163.com/article/6a2450ba1b485e11a66bea88
https://ds.163.com/article/6a2450baf41c947c7a7b5b5a/
https://ds.163.com/article/6a2450baf41c947c7a7b5b5a
https://ds.163.com/article/6a2450bb934e1047685400dd/
https://ds.163.com/article/6a2450bb934e1047685400dd
https://ds.163.com/article/6a2450bbccb10e6787504e6f/
https://ds.163.com/article/6a2450bbccb10e6787504e6f
https://ds.163.com/article/6a2450b9b5f0165310986686/
https://ds.163.com/article/6a2450b9b5f0165310986686
https://ds.163.com/article/6a2450b5cc0f39423b6e275e/
https://ds.163.com/article/6a2450b5cc0f39423b6e275e
https://ds.163.com/article/6a2450b4ccb10e6787504e4f/
https://ds.163.com/article/6a2450b4ccb10e6787504e4f
https://ds.163.com/article/6a2450b3b5f0165310986667/
https://ds.163.com/article/6a2450b3b5f0165310986667
https://ds.163.com/article/6a2450b3b5f0165310986662/
https://ds.163.com/article/6a2450b3b5f0165310986662
https://ds.163.com/article/6a2450b2af819f17e3fdb83a/
https://ds.163.com/article/6a2450b2af819f17e3fdb83a
https://ds.163.com/article/6a2450887cc98112b667ab4f/
https://ds.163.com/article/6a2450887cc98112b667ab4f
https://ds.163.com/article/6a245089934e104768540025/
https://ds.163.com/article/6a245089934e104768540025
https://ds.163.com/article/6a2450887cc98112b667ab54/
https://ds.163.com/article/6a2450887cc98112b667ab54
https://ds.163.com/article/6a245083bd9cd46b72b65f29/
https://ds.163.com/article/6a245083bd9cd46b72b65f29
https://ds.163.com/article/6a245081cfd026003e37c156/
https://ds.163.com/article/6a245081cfd026003e37c156
https://ds.163.com/article/6a245083ccb10e6787504da0/
https://ds.163.com/article/6a245083ccb10e6787504da0
https://ds.163.com/article/6a245082bdde6c369236d8f4/
https://ds.163.com/article/6a245082bdde6c369236d8f4
https://ds.163.com/article/6a2450813ce1ee4d9c784411/
https://ds.163.com/article/6a2450813ce1ee4d9c784411
https://ds.163.com/article/6a24508071ab5215a9efd334/
https://ds.163.com/article/6a24508071ab5215a9efd334
https://ds.163.com/article/6a24507f1b485e11a66be9ad/
https://ds.163.com/article/6a24507f1b485e11a66be9ad
https://ds.163.com/article/6a24507eb5f0165310986591/
https://ds.163.com/article/6a24507eb5f0165310986591
https://ds.163.com/article/6a24507d3ce1ee4d9c7843f6/
https://ds.163.com/article/6a24507d3ce1ee4d9c7843f6
https://ds.163.com/article/6a2450796e24f11408a066d0/
https://ds.163.com/article/6a2450796e24f11408a066d0
https://ds.163.com/article/6a245076f41c947c7a7b5a54/
https://ds.163.com/article/6a245076f41c947c7a7b5a54
https://ds.163.com/article/6a2450776e24f11408a066c7/
https://ds.163.com/article/6a2450776e24f11408a066c7
https://ds.163.com/article/6a24507571ab5215a9efd308/
https://ds.163.com/article/6a24507571ab5215a9efd308
https://ds.163.com/article/6a245075cc0f39423b6e266f/
https://ds.163.com/article/6a245075cc0f39423b6e266f
https://ds.163.com/article/6a2450726e24f11408a066ba/
https://ds.163.com/article/6a2450726e24f11408a066ba
https://ds.163.com/article/6a24506f41cbd853816a0f01/
https://ds.163.com/article/6a24506f41cbd853816a0f01
https://ds.163.com/article/6a245070bd9cd46b72b65ed8/
https://ds.163.com/article/6a245070bd9cd46b72b65ed8
https://ds.163.com/article/6a24506fddda263a73686f1e/
https://ds.163.com/article/6a24506fddda263a73686f1e
https://ds.163.com/article/6a24506f41cbd853816a0efe/
https://ds.163.com/article/6a24506f41cbd853816a0efe
https://ds.163.com/article/6a244cf2bf0530d4e2e68a3/
https://ds.163.com/article/6a244cf2b1f0530d4e2e68a3
https://ds.163.com/article/6a244cf1ccb10e6787503ee5/
https://ds.163.com/article/6a244cf1ccb10e6787503ee5
https://ds.163.com/article/6a244cf2b9c1757d66ac6e41/
https://ds.163.com/article/6a244cf2b9c1757d66ac6e41
https://ds.163.com/article/6a244cefccb10e6787503ed4/
https://ds.163.com/article/6a244cefccb10e6787503ed4
https://ds.163.com/article/6a244cedb5f01653109856d8/
https://ds.163.com/article/6a244cedb5f01653109856d8
https://ds.163.com/article/6a244ce6b1f0530d4e2e6860/
https://ds.163.com/article/6a244ce6b1f0530d4e2e6860
https://ds.163.com/article/6a244ce6af819f17e3fda831/
https://ds.163.com/article/6a244ce6af819f17e3fda831
https://ds.163.com/article/6a244ce5ddda263a736860df/
https://ds.163.com/article/6a244ce5ddda263a736860df
https://ds.163.com/article/6a244ce39e57c463fb2f60ef/
https://ds.163.com/article/6a244ce39e57c463fb2f60ef
https://ds.163.com/article/6a244ce56e24f11408a058a1/
https://ds.163.com/article/6a244ce56e24f11408a058a1
https://ds.163.com/article/6a244ce441cbd853816a0103/
https://ds.163.com/article/6a244ce441cbd853816a0103
https://ds.163.com/article/6a244ce3b5f0165310985694/
https://ds.163.com/article/6a244ce3b5f0165310985694
https://ds.163.com/article/6a244cdfcc0f39423b6e1794/
https://ds.163.com/article/6a244cdfcc0f39423b6e1794
https://ds.163.com/article/6a244cdfc0c6c9700ae11e22/
https://ds.163.com/article/6a244cdfc0c6c9700ae11e22
https://ds.163.com/article/6a244cde947883408b1e8600/
https://ds.163.com/article/6a244cde947883408b1e8600
https://ds.163.com/article/6a244cde3ce1ee4d9c783406/
https://ds.163.com/article/6a244cde3ce1ee4d9c783406
https://ds.163.com/article/6a244cb97cc98112b6679c5f/
https://ds.163.com/article/6a244cb97cc98112b6679c5f
https://ds.163.com/article/6a244cba9e57c463fb2f603b/
https://ds.163.com/article/6a244cba9e57c463fb2f603b
https://ds.163.com/article/6a244ca87d221a75e97802de/
https://ds.163.com/article/6a244ca87d221a75e97802de
https://ds.163.com/article/6a244cadf41c947c7a7b4ae8/
https://ds.163.com/article/6a244cadf41c947c7a7b4ae8
https://ds.163.com/article/6a244cac947883408b1e8516/
https://ds.163.com/article/6a244cac947883408b1e8516
https://ds.163.com/article/6a244caaddda263a73685fd6/
https://ds.163.com/article/6a244caaddda263a73685fd6
https://ds.163.com/article/6a244ca79e57c463fb2f5fe3/
https://ds.163.com/article/6a244ca79e57c463fb2f5fe3
https://ds.163.com/article/6a244ca7c0c6c9700ae11d2f/
https://ds.163.com/article/6a244ca7c0c6c9700ae11d2f
https://ds.163.com/article/6a244ca4b9c1757d66ac6cd4/
https://ds.163.com/article/6a244ca4b9c1757d66ac6cd4
https://ds.163.com/article/6a244ca271ab5215a9efc28d/
https://ds.163.com/article/6a244ca271ab5215a9efc28d
https://ds.163.com/article/6a244ca27d221a75e97802c8/
https://ds.163.com/article/6a244ca27d221a75e97802c8
https://ds.163.com/article/6a244ca1b5f0165310985599/
https://ds.163.com/article/6a244ca1b5f0165310985599
https://ds.163.com/article/6a244ca1b5f0165310985594/
https://ds.163.com/article/6a244ca1b5f0165310985594
https://ds.163.com/article/6a244c9fddda263a73685faa/
https://ds.163.com/article/6a244c9fddda263a73685faa
https://ds.163.com/article/6a244c9dc0c6c9700ae11d0c/
https://ds.163.com/article/6a244c9dc0c6c9700ae11d0c
https://ds.163.com/article/6a244c9baf819f17e3fda71e/
https://ds.163.com/article/6a244c9baf819f17e3fda71e
https://ds.163.com/article/6a244c9acc0f39423b6e1634/
https://ds.163.com/article/6a244c9acc0f39423b6e1634
https://ds.163.com/article/6a244c98b5f0165310985567/
https://ds.163.com/article/6a244c98b5f0165310985567
https://ds.163.com/article/6a244c969e57c463fb2f5f9c/
https://ds.163.com/article/6a244c969e57c463fb2f5f9c
https://ds.163.com/article/6a244c95f41c947c7a7b4a84/
https://ds.163.com/article/6a244c95f41c947c7a7b4a84
https://ds.163.com/article/6a244c88bd9cd46b72b64f3a/
https://ds.163.com/article/6a244c88bd9cd46b72b64f3a
https://ds.163.com/article/6a244c89f41c947c7a7b4a43/
https://ds.163.com/article/6a244c89f41c947c7a7b4a43
https://ds.163.com/article/6a244c85947883408b1e8468/
https://ds.163.com/article/6a244c85947883408b1e8468
https://ds.163.com/article/6a244c84bdde6c369236c80e/
https://ds.163.com/article/6a244c84bdde6c369236c80e
https://ds.163.com/article/6a244c83bd9cd46b72b64f1a/
https://ds.163.com/article/6a244c83bd9cd46b72b64f1a
https://ds.163.com/article/6a244c81af819f17e3fda686/
https://ds.163.com/article/6a244c81af819f17e3fda686
https://ds.163.com/article/6a244c81b9c1757d66ac6c46/
https://ds.163.com/article/6a244c81b9c1757d66ac6c46
https://ds.163.com/article/6a244c80ddda263a73685f23/
https://ds.163.com/article/6a244c80ddda263a73685f23
https://ds.163.com/article/6a244c7df41c947c7a7b4a26/
https://ds.163.com/article/6a244c7df41c947c7a7b4a26
https://ds.163.com/article/6a244c7bbdde6c369236c7e5/
https://ds.163.com/article/6a244c7bbdde6c369236c7e5
https://ds.163.com/article/6a244c7c24449a69b07653f4/
https://ds.163.com/article/6a244c7c24449a69b07653f4
https://ds.163.com/article/6a244c7c1b485e11a66bd9ae/
https://ds.163.com/article/6a244c7c1b485e11a66bd9ae
https://ds.163.com/article/6a244c7addda263a73685f01/
https://ds.163.com/article/6a244c7addda263a73685f01
https://ds.163.com/article/6a244c79ccb10e6787503d17/
https://ds.163.com/article/6a244c79ccb10e6787503d17
https://ds.163.com/article/6a244c75cfd026003e37b109/
https://ds.163.com/article/6a244c75cfd026003e37b109
https://ds.163.com/article/6a244c75c0c6c9700ae11c4b/
https://ds.163.com/article/6a244c75c0c6c9700ae11c4b
https://ds.163.com/article/6a244c73b9c1757d66ac6bfa/
https://ds.163.com/article/6a244c73b9c1757d66ac6bfa
https://ds.163.com/article/6a244c729e57c463fb2f5ee8/
https://ds.163.com/article/6a244c729e57c463fb2f5ee8
https://ds.163.com/article/6a2449cfcfd026003e37a563/
https://ds.163.com/article/6a2449cfcfd026003e37a563
https://ds.163.com/article/6a2449ce934e10476853e312/
https://ds.163.com/article/6a2449ce934e10476853e312
https://ds.163.com/article/6a2449af3ce1ee4d9c78259d/
https://ds.163.com/article/6a2449af3ce1ee4d9c78259d
https://ds.163.com/article/6a24498b1b485e11a66bcc6c/
https://ds.163.com/article/6a24498b1b485e11a66bcc6c
https://ds.163.com/article/6a24495fcc0f39423b6e07d7/
https://ds.163.com/article/6a24495fcc0f39423b6e07d7
openEuler 是由开放原子开源基金会孵化的全场景开源操作系统项目,面向数字基础设施四大核心场景(服务器、云计算、边缘计算、嵌入式),全面支持 ARM、x86、RISC-V、loongArch、PowerPC、SW-64 等多样性计算架构
更多推荐



所有评论(0)