低读低写并发、低数据量方案

方案一:双机高可用方案

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。整个故障转移过程对应用程序完全透明。

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/6a2addd752b4a94f038af5e5/
https://ds.163.com/article/6a2addd752b4a94f038af5e5
https://ds.163.com/article/6a2addd16564803a4e2b3a1b/
https://ds.163.com/article/6a2addd16564803a4e2b3a1b
https://ds.163.com/article/6a2addce04dcf023fbf63613/
https://ds.163.com/article/6a2addce04dcf023fbf63613
https://ds.163.com/article/6a2addcccc4359476620353e/
https://ds.163.com/article/6a2addcccc4359476620353e
https://ds.163.com/article/6a2addc929b3953f4b60c140/
https://ds.163.com/article/6a2addc929b3953f4b60c140
https://ds.163.com/article/6a2addc75f56b432a7ff2499/
https://ds.163.com/article/6a2addc75f56b432a7ff2499
https://ds.163.com/article/6a2addc9dcb0171bba74a277/
https://ds.163.com/article/6a2addc9dcb0171bba74a277
https://ds.163.com/article/6a2addc6ef9b336306de986a/
https://ds.163.com/article/6a2addc6ef9b336306de986a
https://ds.163.com/article/6a2addc4ea7f101c5104126a/
https://ds.163.com/article/6a2addc4ea7f101c5104126a
https://ds.163.com/article/6a2addc2a6e1e71c6b6903ea/
https://ds.163.com/article/6a2addc2a6e1e71c6b6903ea
https://ds.163.com/article/6a2addbd5f56b432a7ff2454/
https://ds.163.com/article/6a2addbd5f56b432a7ff2454
https://ds.163.com/article/6a2addbf6564803a4e2b397e/
https://ds.163.com/article/6a2addbf6564803a4e2b397e
https://ds.163.com/article/6a2addbf1a4f8b73b359374b/
https://ds.163.com/article/6a2addbf1a4f8b73b359374b
https://ds.163.com/article/6a2addbd6564803a4e2b3976/
https://ds.163.com/article/6a2addbd6564803a4e2b3976
https://ds.163.com/article/6a2addbbea7f101c5104122c/
https://ds.163.com/article/6a2addbbea7f101c5104122c
https://ds.163.com/article/6a2addb91a0d23678a79290d/
https://ds.163.com/article/6a2addb91a0d23678a79290d
https://ds.163.com/article/6a2addb89e12ef38df1b3159/
https://ds.163.com/article/6a2addb89e12ef38df1b3159
https://ds.163.com/article/6a2addb66564803a4e2b393e/
https://ds.163.com/article/6a2addb66564803a4e2b393e
https://ds.163.com/article/6a2addb6ef9b336306de97cd/
https://ds.163.com/article/6a2addb6ef9b336306de97cd
https://ds.163.com/article/6a2addb61a4f8b73b3593701/
https://ds.163.com/article/6a2addb61a4f8b73b3593701
https://ds.163.com/article/6a2addb3dcb0171bba74a1cd/
https://ds.163.com/article/6a2addb3dcb0171bba74a1cd
https://ds.163.com/article/6a2addb429b3953f4b60c08c/
https://ds.163.com/article/6a2addb429b3953f4b60c08c
https://ds.163.com/article/6a2addb1a6e1e71c6b690367/
https://ds.163.com/article/6a2addb1a6e1e71c6b690367
https://ds.163.com/article/6a2addb04e8ada54d0c887a7/
https://ds.163.com/article/6a2addb04e8ada54d0c887a7
https://ds.163.com/article/6a2addae4e8ada54d0c8879e/
https://ds.163.com/article/6a2addae4e8ada54d0c8879e
https://ds.163.com/article/6a2addad4e8ada54d0c8878e/
https://ds.163.com/article/6a2addad4e8ada54d0c8878e
https://ds.163.com/article/6a2addadc5bff359d156eaaa/
https://ds.163.com/article/6a2addadc5bff359d156eaaa
https://ds.163.com/article/6a2addab4e8ada54d0c8877b/
https://ds.163.com/article/6a2addab4e8ada54d0c8877b
https://ds.163.com/article/6a2addab6564803a4e2b38f1/
https://ds.163.com/article/6a2addab6564803a4e2b38f1
https://ds.163.com/article/6a2addaadcb0171bba74a181/
https://ds.163.com/article/6a2addaadcb0171bba74a181
https://ds.163.com/article/6a2addaa1a0d23678a79287f/
https://ds.163.com/article/6a2addaa1a0d23678a79287f
https://ds.163.com/article/6a2addaa8f08c63fcefa096d/
https://ds.163.com/article/6a2addaa8f08c63fcefa096d
https://ds.163.com/article/6a2adda7dcb0171bba74a174/
https://ds.163.com/article/6a2adda7dcb0171bba74a174
https://ds.163.com/article/6a2adda91a0d23678a792872/
https://ds.163.com/article/6a2adda91a0d23678a792872
https://ds.163.com/article/6a2adda55f56b432a7ff2391/
https://ds.163.com/article/6a2adda55f56b432a7ff2391
https://ds.163.com/article/6a2adda68f08c63fcefa0947/
https://ds.163.com/article/6a2adda68f08c63fcefa0947
https://ds.163.com/article/6a2adda6c91e5f52175a3310/
https://ds.163.com/article/6a2adda6c91e5f52175a3310
https://ds.163.com/article/6a2adda54e8ada54d0c88755/
https://ds.163.com/article/6a2adda54e8ada54d0c88755
https://ds.163.com/article/6a2adda3ef9b336306de9734/
https://ds.163.com/article/6a2adda3ef9b336306de9734
https://ds.163.com/article/6a2adda2a6e1e71c6b6902ee/
https://ds.163.com/article/6a2adda2a6e1e71c6b6902ee
https://ds.163.com/article/6a2adda104dcf023fbf6347b/
https://ds.163.com/article/6a2adda104dcf023fbf6347b
https://ds.163.com/article/6a2adda01a0d23678a79282a/
https://ds.163.com/article/6a2adda01a0d23678a79282a
https://ds.163.com/article/6a2add9ecc435947662033c5/
https://ds.163.com/article/6a2add9ecc435947662033c5
https://ds.163.com/article/6a2add9ec5bff359d156ea37/
https://ds.163.com/article/6a2add9ec5bff359d156ea37
https://ds.163.com/article/6a2add9d32ce2a06a846ddc6/
https://ds.163.com/article/6a2add9d32ce2a06a846ddc6
https://ds.163.com/article/6a2add9d9e12ef38df1b3063/
https://ds.163.com/article/6a2add9d9e12ef38df1b3063
https://ds.163.com/article/6a2add9ddcb0171bba74a11c/
https://ds.163.com/article/6a2add9ddcb0171bba74a11c
https://ds.163.com/article/6a2add9df36cfd1003475ad0/
https://ds.163.com/article/6a2add9df36cfd1003475ad0
https://ds.163.com/article/6a2add9c8f08c63fcefa08e4/
https://ds.163.com/article/6a2add9c8f08c63fcefa08e4
https://ds.163.com/article/6a2add9a56b0b600e71b0048/
https://ds.163.com/article/6a2add9a56b0b600e71b0048
https://ds.163.com/article/6a2add9aa6e1e71c6b69029a/
https://ds.163.com/article/6a2add9aa6e1e71c6b69029a
https://ds.163.com/article/6a2add9ac5bff359d156ea16/
https://ds.163.com/article/6a2add9ac5bff359d156ea16
https://ds.163.com/article/6a2add99ef9b336306de96d6/
https://ds.163.com/article/6a2add99ef9b336306de96d6
https://ds.163.com/article/6a2add9729b3953f4b60bf8f/
https://ds.163.com/article/6a2add9729b3953f4b60bf8f
https://ds.163.com/article/6a2add984e8ada54d0c886e6/
https://ds.163.com/article/6a2add984e8ada54d0c886e6
https://ds.163.com/article/6a2add98c91e5f52175a32a1/
https://ds.163.com/article/6a2add98c91e5f52175a32a1
https://ds.163.com/article/6a2add98f1b8072281c8cc8a/
https://ds.163.com/article/6a2add98f1b8072281c8cc8a
https://ds.163.com/article/6a2add98a6e1e71c6b690281/
https://ds.163.com/article/6a2add98a6e1e71c6b690281
https://ds.163.com/article/6a2add97f3ce286d68374bcf/
https://ds.163.com/article/6a2add97f3ce286d68374bcf
https://ds.163.com/article/6a2add9629b3953f4b60bf7e/
https://ds.163.com/article/6a2add9629b3953f4b60bf7e
https://ds.163.com/article/6a2add9504dcf023fbf6340a/
https://ds.163.com/article/6a2add9504dcf023fbf6340a
https://ds.163.com/article/6a2add9504dcf023fbf63403/
https://ds.163.com/article/6a2add9504dcf023fbf63403
https://ds.163.com/article/6a2add9204dcf023fbf633ec/
https://ds.163.com/article/6a2add9204dcf023fbf633ec
https://ds.163.com/article/6a2add9432ce2a06a846dd71/
https://ds.163.com/article/6a2add9432ce2a06a846dd71
https://ds.163.com/article/6a2add939e12ef38df1b3002/
https://ds.163.com/article/6a2add939e12ef38df1b3002
https://ds.163.com/article/6a2add9216b30250d875d8f9/
https://ds.163.com/article/6a2add9216b30250d875d8f9
https://ds.163.com/article/6a2add91c91e5f52175a3259/
https://ds.163.com/article/6a2add91c91e5f52175a3259
https://ds.163.com/article/6a2add9216b30250d875d8f5/
https://ds.163.com/article/6a2add9216b30250d875d8f5
https://ds.163.com/article/6a2add9104dcf023fbf633e1/
https://ds.163.com/article/6a2add9104dcf023fbf633e1
https://ds.163.com/article/6a2add9029b3953f4b60bf47/
https://ds.163.com/article/6a2add9029b3953f4b60bf47
https://ds.163.com/article/6a2add90c5bff359d156e9cf/
https://ds.163.com/article/6a2add90c5bff359d156e9cf
https://ds.163.com/article/6a2add8fa6e1e71c6b690230/
https://ds.163.com/article/6a2add8fa6e1e71c6b690230
https://ds.163.com/article/6a2add8dcc4359476620333e/
https://ds.163.com/article/6a2add8dcc4359476620333e
https://ds.163.com/article/6a2add8da6e1e71c6b690215/
https://ds.163.com/article/6a2add8da6e1e71c6b690215
https://ds.163.com/article/6a2add8ac2dc103573ac97c1/
https://ds.163.com/article/6a2add8ac2dc103573ac97c1
https://ds.163.com/article/6a2add8ccc43594766203339/
https://ds.163.com/article/6a2add8ccc43594766203339
https://ds.163.com/article/6a2add8a29b3953f4b60bf0d/
https://ds.163.com/article/6a2add8a29b3953f4b60bf0d
https://ds.163.com/article/6a2add8a6564803a4e2b37c3/
https://ds.163.com/article/6a2add8a6564803a4e2b37c3
https://ds.163.com/article/6a2add8bdcb0171bba74a084/
https://ds.163.com/article/6a2add8bdcb0171bba74a084
https://ds.163.com/article/6a2add8904dcf023fbf6339f/
https://ds.163.com/article/6a2add8904dcf023fbf6339f
https://ds.163.com/article/6a2add88ea7f101c51041067/
https://ds.163.com/article/6a2add88ea7f101c51041067
https://ds.163.com/article/6a2add88c2dc103573ac97b1/
https://ds.163.com/article/6a2add88c2dc103573ac97b1
https://ds.163.com/article/6a2add88f1b8072281c8cbf9/
https://ds.163.com/article/6a2add88f1b8072281c8cbf9
https://ds.163.com/article/6a2add8704dcf023fbf63383/
https://ds.163.com/article/6a2add8704dcf023fbf63383
https://ds.163.com/article/6a2add8716b30250d875d897/
https://ds.163.com/article/6a2add8716b30250d875d897
https://ds.163.com/article/6a2add881a0d23678a792765/
https://ds.163.com/article/6a2add881a0d23678a792765
https://ds.163.com/article/6a2add861a4f8b73b359356f/
https://ds.163.com/article/6a2add861a4f8b73b359356f
https://ds.163.com/article/6a2add856564803a4e2b378a/
https://ds.163.com/article/6a2add856564803a4e2b378a
https://ds.163.com/article/6a2add846564803a4e2b377b/
https://ds.163.com/article/6a2add846564803a4e2b377b
https://ds.163.com/article/6a2add81dcb0171bba74a021/
https://ds.163.com/article/6a2add81dcb0171bba74a021
https://ds.163.com/article/6a2add83f1b8072281c8cbc5/
https://ds.163.com/article/6a2add83f1b8072281c8cbc5
https://ds.163.com/article/6a2add82f36cfd10034759d0/
https://ds.163.com/article/6a2add82f36cfd10034759d0
https://ds.163.com/article/6a2add81f1b8072281c8cbb6/
https://ds.163.com/article/6a2add81f1b8072281c8cbb6
https://ds.163.com/article/6a2add81f1b8072281c8cbb8/
https://ds.163.com/article/6a2add81f1b8072281c8cbb8
https://ds.163.com/article/6a2add7ff1b8072281c8cba4/
https://ds.163.com/article/6a2add7ff1b8072281c8cba4
https://ds.163.com/article/6a2add81c2dc103573ac976e/
https://ds.163.com/article/6a2add81c2dc103573ac976e
https://ds.163.com/article/6a2add80a6e1e71c6b6901bb/
https://ds.163.com/article/6a2add80a6e1e71c6b6901bb
https://ds.163.com/article/6a2add8052b4a94f038af2fe/
https://ds.163.com/article/6a2add8052b4a94f038af2fe
https://ds.163.com/article/6a2add7e52b4a94f038af2f3/
https://ds.163.com/article/6a2add7e52b4a94f038af2f3
https://ds.163.com/article/6a2add7e1a0d23678a792710/
https://ds.163.com/article/6a2add7e1a0d23678a792710
https://ds.163.com/article/6a2add7d32ce2a06a846dca5/
https://ds.163.com/article/6a2add7d32ce2a06a846dca5
https://ds.163.com/article/6a2add7ac2dc103573ac972e/
https://ds.163.com/article/6a2add7ac2dc103573ac972e
https://ds.163.com/article/6a2add7bf3ce286d68374ad8/
https://ds.163.com/article/6a2add7bf3ce286d68374ad8
https://ds.163.com/article/6a2add7c56b0b600e71aff26/
https://ds.163.com/article/6a2add7c56b0b600e71aff26
https://ds.163.com/article/6a2add7b32ce2a06a846dc8f/
https://ds.163.com/article/6a2add7b32ce2a06a846dc8f
https://ds.163.com/article/6a2add7ac5bff359d156e935/
https://ds.163.com/article/6a2add7ac5bff359d156e935
https://ds.163.com/article/6a2add7a4e8ada54d0c88606/
https://ds.163.com/article/6a2add7a4e8ada54d0c88606
https://ds.163.com/article/6a2add794e8ada54d0c88602/
https://ds.163.com/article/6a2add794e8ada54d0c88602
https://ds.163.com/article/6a2add79c91e5f52175a319a/
https://ds.163.com/article/6a2add79c91e5f52175a319a
https://ds.163.com/article/6a2add79f3ce286d68374acc/
https://ds.163.com/article/6a2add79f3ce286d68374acc
https://ds.163.com/article/6a2add78dcb0171bba749fcf/
https://ds.163.com/article/6a2add78dcb0171bba749fcf
https://ds.163.com/article/6a2add776564803a4e2b370f/
https://ds.163.com/article/6a2add776564803a4e2b370f
https://ds.163.com/article/6a2add761a0d23678a7926d7/
https://ds.163.com/article/6a2add761a0d23678a7926d7
https://ds.163.com/article/6a2add77ef9b336306de9588/
https://ds.163.com/article/6a2add77ef9b336306de9588
https://ds.163.com/article/6a2add778f08c63fcefa078c/
https://ds.163.com/article/6a2add778f08c63fcefa078c
https://ds.163.com/article/6a2add768f08c63fcefa0786/
https://ds.163.com/article/6a2add768f08c63fcefa0786
https://ds.163.com/article/6a2add769e12ef38df1b2f06/
https://ds.163.com/article/6a2add769e12ef38df1b2f06
https://ds.163.com/article/6a2add756564803a4e2b36fb/
https://ds.163.com/article/6a2add756564803a4e2b36fb
https://ds.163.com/article/6a2add745f56b432a7ff21c9/
https://ds.163.com/article/6a2add745f56b432a7ff21c9
https://ds.163.com/article/6a2add73cc43594766203253/
https://ds.163.com/article/6a2add73cc43594766203253
https://ds.163.com/article/6a2add7432ce2a06a846dc5e/
https://ds.163.com/article/6a2add7432ce2a06a846dc5e
https://ds.163.com/article/6a2add73ef9b336306de9564/
https://ds.163.com/article/6a2add73ef9b336306de9564
https://ds.163.com/article/6a2add735f56b432a7ff21c0/
https://ds.163.com/article/6a2add735f56b432a7ff21c0
https://ds.163.com/article/6a2add735f56b432a7ff21bc/
https://ds.163.com/article/6a2add735f56b432a7ff21bc
https://ds.163.com/article/6a2add721a0d23678a7926b0/
https://ds.163.com/article/6a2add721a0d23678a7926b0
https://ds.163.com/article/6a2add739e12ef38df1b2eed/
https://ds.163.com/article/6a2add739e12ef38df1b2eed
https://ds.163.com/article/6a2add7352b4a94f038af2a2/
https://ds.163.com/article/6a2add7352b4a94f038af2a2
https://ds.163.com/article/6a2add731a4f8b73b35934cc/
https://ds.163.com/article/6a2add731a4f8b73b35934cc
https://ds.163.com/article/6a2add711a4f8b73b35934c2/
https://ds.163.com/article/6a2add711a4f8b73b35934c2
https://ds.163.com/article/6a2add70c2dc103573ac96d9/
https://ds.163.com/article/6a2add70c2dc103573ac96d9
https://ds.163.com/article/6a2add705f56b432a7ff21a2/
https://ds.163.com/article/6a2add705f56b432a7ff21a2
https://ds.163.com/article/6a2add6ff36cfd100347592f/
https://ds.163.com/article/6a2add6ff36cfd100347592f
https://ds.163.com/article/6a2add6dc5bff359d156e8b6/
https://ds.163.com/article/6a2add6dc5bff359d156e8b6
https://ds.163.com/article/6a2add6cf1b8072281c8cafc/
https://ds.163.com/article/6a2add6cf1b8072281c8cafc
https://ds.163.com/article/6a2add6df36cfd1003475922/
https://ds.163.com/article/6a2add6df36cfd1003475922
https://ds.163.com/article/6a2add6d5f56b432a7ff218a/
https://ds.163.com/article/6a2add6d5f56b432a7ff218a
https://ds.163.com/article/6a2add6aea7f101c51040f4f/
https://ds.163.com/article/6a2add6aea7f101c51040f4f
https://ds.163.com/article/6a2add6cf1b8072281c8cb05/
https://ds.163.com/article/6a2add6cf1b8072281c8cb05
https://ds.163.com/article/6a2add6d56b0b600e71afead/
https://ds.163.com/article/6a2add6d56b0b600e71afead
https://ds.163.com/article/6a2add6cc91e5f52175a311c/
https://ds.163.com/article/6a2add6cc91e5f52175a311c
https://ds.163.com/article/6a2add6a5f56b432a7ff216e/
https://ds.163.com/article/6a2add6a5f56b432a7ff216e
https://ds.163.com/article/6a2add6ac2dc103573ac96a3/
https://ds.163.com/article/6a2add6ac2dc103573ac96a3
https://ds.163.com/article/6a2add6bf1b8072281c8caef/
https://ds.163.com/article/6a2add6bf1b8072281c8caef
https://ds.163.com/article/6a2add6ac91e5f52175a310a/
https://ds.163.com/article/6a2add6ac91e5f52175a310a
https://ds.163.com/article/6a2add6b56b0b600e71afe94/
https://ds.163.com/article/6a2add6b56b0b600e71afe94
https://ds.163.com/article/6a2add6bf3ce286d68374a4a/
https://ds.163.com/article/6a2add6bf3ce286d68374a4a
https://ds.163.com/article/6a2add66c2dc103573ac9676/
https://ds.163.com/article/6a2add66c2dc103573ac9676
https://ds.163.com/article/6a2add6ac5bff359d156e892/
https://ds.163.com/article/6a2add6ac5bff359d156e892
https://ds.163.com/article/6a2add68f1b8072281c8cad8/
https://ds.163.com/article/6a2add68f1b8072281c8cad8
https://ds.163.com/article/6a2add6704dcf023fbf63259/
https://ds.163.com/article/6a2add6704dcf023fbf63259
https://ds.163.com/article/6a2add6652b4a94f038af228/
https://ds.163.com/article/6a2add6652b4a94f038af228
https://ds.163.com/article/6a2add66f3ce286d68374a09/
https://ds.163.com/article/6a2add66f3ce286d68374a09
https://ds.163.com/article/6a2add651a0d23678a792641/
https://ds.163.com/article/6a2add651a0d23678a792641
https://ds.163.com/article/6a2add65c91e5f52175a30d6/
https://ds.163.com/article/6a2add65c91e5f52175a30d6
https://ds.163.com/article/6a2add61f3ce286d683749e2/
https://ds.163.com/article/6a2add61f3ce286d683749e2
https://ds.163.com/article/6a2add6116b30250d875d72e/
https://ds.163.com/article/6a2add6116b30250d875d72e
https://ds.163.com/article/6a2add61cc435947662031c2/
https://ds.163.com/article/6a2add61cc435947662031c2
https://ds.163.com/article/6a2add5ef36cfd1003475898/
https://ds.163.com/article/6a2add5ef36cfd1003475898
https://ds.163.com/article/6a2add5ff1b8072281c8ca95/
https://ds.163.com/article/6a2add5ff1b8072281c8ca95
https://ds.163.com/article/6a2add5e5f56b432a7ff2103/
https://ds.163.com/article/6a2add5e5f56b432a7ff2103
https://ds.163.com/article/6a2add5e4e8ada54d0c88531/
https://ds.163.com/article/6a2add5e4e8ada54d0c88531
https://ds.163.com/article/6a2add5e52b4a94f038af1dc/
https://ds.163.com/article/6a2add5e52b4a94f038af1dc
https://ds.163.com/article/6a2add5c8f08c63fcefa0691/
https://ds.163.com/article/6a2add5c8f08c63fcefa0691
https://ds.163.com/article/6a2add5af1b8072281c8ca65/
https://ds.163.com/article/6a2add5af1b8072281c8ca65
https://ds.163.com/article/6a2add5bcc4359476620318b/
https://ds.163.com/article/6a2add5bcc4359476620318b
https://ds.163.com/article/6a2add5af3ce286d683749a7/
https://ds.163.com/article/6a2add5af3ce286d683749a7
https://ds.163.com/article/6a2add5932ce2a06a846db82/
https://ds.163.com/article/6a2add5932ce2a06a846db82
https://ds.163.com/article/6a2add589e12ef38df1b2e46/
https://ds.163.com/article/6a2add589e12ef38df1b2e46
https://ds.163.com/article/6a2add57a6e1e71c6b69005a/
https://ds.163.com/article/6a2add57a6e1e71c6b69005a
https://ds.163.com/article/6a2add56c91e5f52175a3051/
https://ds.163.com/article/6a2add56c91e5f52175a3051
https://ds.163.com/article/6a2add5752b4a94f038af19c/
https://ds.163.com/article/6a2add5752b4a94f038af19c
https://ds.163.com/article/6a2add56c5bff359d156e7f4/
https://ds.163.com/article/6a2add56c5bff359d156e7f4
https://ds.163.com/article/6a2add54ea7f101c51040e99/
https://ds.163.com/article/6a2add54ea7f101c51040e99
https://ds.163.com/article/6a2add54f1b8072281c8ca1c/
https://ds.163.com/article/6a2add54f1b8072281c8ca1c
https://ds.163.com/article/6a2add54a6e1e71c6b690039/
https://ds.163.com/article/6a2add54a6e1e71c6b690039
https://ds.163.com/article/6a2add52c91e5f52175a3032/
https://ds.163.com/article/6a2add52c91e5f52175a3032
https://ds.163.com/article/6a2add5204dcf023fbf6319a/
https://ds.163.com/article/6a2add5204dcf023fbf6319a
https://ds.163.com/article/6a2add52cc4359476620312b/
https://ds.163.com/article/6a2add52cc4359476620312b
https://ds.163.com/article/6a2add50f1b8072281c8c9f6/
https://ds.163.com/article/6a2add50f1b8072281c8c9f6
https://ds.163.com/article/6a2add519e12ef38df1b2e03/
https://ds.163.com/article/6a2add519e12ef38df1b2e03
https://ds.163.com/article/6a2add4fef9b336306de9437/
https://ds.163.com/article/6a2add4fef9b336306de9437
https://ds.163.com/article/6a2add4e56b0b600e71afd8d/
https://ds.163.com/article/6a2add4e56b0b600e71afd8d
https://ds.163.com/article/6a2add4e5f56b432a7ff2075/
https://ds.163.com/article/6a2add4e5f56b432a7ff2075
https://ds.163.com/article/6a2add4e9e12ef38df1b2de4/
https://ds.163.com/article/6a2add4e9e12ef38df1b2de4
https://ds.163.com/article/6a2add4bc5bff359d156e79e/
https://ds.163.com/article/6a2add4bc5bff359d156e79e
https://ds.163.com/article/6a2add48ea7f101c51040e17/
https://ds.163.com/article/6a2add48ea7f101c51040e17
https://ds.163.com/article/6a2add4904dcf023fbf6314a/
https://ds.163.com/article/6a2add4904dcf023fbf6314a
https://ds.163.com/article/6a2add499e12ef38df1b2dad/
https://ds.163.com/article/6a2add499e12ef38df1b2dad
https://ds.163.com/article/6a2add47cc435947662030b8/
https://ds.163.com/article/6a2add47cc435947662030b8
https://ds.163.com/article/6a2add4804dcf023fbf6313a/
https://ds.163.com/article/6a2add4804dcf023fbf6313a
https://ds.163.com/article/6a2add485f56b432a7ff2046/
https://ds.163.com/article/6a2add485f56b432a7ff2046
https://ds.163.com/article/6a2add4656b0b600e71afd40/
https://ds.163.com/article/6a2add4656b0b600e71afd40
https://ds.163.com/article/6a2add43cc43594766203091/
https://ds.163.com/article/6a2add43cc43594766203091
https://ds.163.com/article/6a2add45ea7f101c51040dff/
https://ds.163.com/article/6a2add45ea7f101c51040dff
https://ds.163.com/article/6a2add44ef9b336306de93d0/
https://ds.163.com/article/6a2add44ef9b336306de93d0
https://ds.163.com/article/6a2add4456b0b600e71afd27/
https://ds.163.com/article/6a2add4456b0b600e71afd27
https://ds.163.com/article/6a2add3def9b336306de9392/
https://ds.163.com/article/6a2add3def9b336306de9392
https://ds.163.com/article/6a2add3b9e12ef38df1b2d1e/
https://ds.163.com/article/6a2add3b9e12ef38df1b2d1e
https://ds.163.com/article/6a2add3b32ce2a06a846da67/
https://ds.163.com/article/6a2add3b32ce2a06a846da67
https://ds.163.com/article/6a2add3c04dcf023fbf630b5/
https://ds.163.com/article/6a2add3c04dcf023fbf630b5
https://ds.163.com/article/6a2add3b9e12ef38df1b2d1f/
https://ds.163.com/article/6a2add3b9e12ef38df1b2d1f
https://ds.163.com/article/6a2add3804dcf023fbf630a0/
https://ds.163.com/article/6a2add3804dcf023fbf630a0
https://ds.163.com/article/6a2add371a0d23678a792474/
https://ds.163.com/article/6a2add371a0d23678a792474
https://ds.163.com/article/6a2add35ea7f101c51040d51/
https://ds.163.com/article/6a2add35ea7f101c51040d51
https://ds.163.com/article/6a2add318f08c63fcefa04ff/
https://ds.163.com/article/6a2add318f08c63fcefa04ff
https://ds.163.com/article/6a2add2df1b8072281c8c8bb/
https://ds.163.com/article/6a2add2df1b8072281c8c8bb
https://ds.163.com/article/6a2add2cf3ce286d6837480b/
https://ds.163.com/article/6a2add2cf3ce286d6837480b
https://ds.163.com/article/6a2add2bea7f101c51040cfa/
https://ds.163.com/article/6a2add2bea7f101c51040cfa
https://ds.163.com/article/6a2add2a8f08c63fcefa04b9/
https://ds.163.com/article/6a2add2a8f08c63fcefa04b9
https://ds.163.com/article/6a2add2804dcf023fbf62ffd/
https://ds.163.com/article/6a2add2804dcf023fbf62ffd
https://ds.163.com/article/6a2add2804dcf023fbf63001/
https://ds.163.com/article/6a2add2804dcf023fbf63001
https://ds.163.com/article/6a2add26f3ce286d683747db/
https://ds.163.com/article/6a2add26f3ce286d683747db
https://ds.163.com/article/6a2add2729b3953f4b60bb90/
https://ds.163.com/article/6a2add2729b3953f4b60bb90
https://ds.163.com/article/6a2add256564803a4e2b342d/
https://ds.163.com/article/6a2add256564803a4e2b342d
https://ds.163.com/article/6a2add2304dcf023fbf62fd6/
https://ds.163.com/article/6a2add2304dcf023fbf62fd6
https://ds.163.com/article/6a2adcd54e8ada54d0c88042/
https://ds.163.com/article/6a2adcd54e8ada54d0c88042
https://ds.163.com/article/6a2adcb356b0b600e71af836/
https://ds.163.com/article/6a2adcb356b0b600e71af836
https://ds.163.com/article/6a2adc8fa6e1e71c6b68f922/
https://ds.163.com/article/6a2adc8fa6e1e71c6b68f922
 

Logo

openEuler 是由开放原子开源基金会孵化的全场景开源操作系统项目,面向数字基础设施四大核心场景(服务器、云计算、边缘计算、嵌入式),全面支持 ARM、x86、RISC-V、loongArch、PowerPC、SW-64 等多样性计算架构

更多推荐