-
Notifications
You must be signed in to change notification settings - Fork 191
/
index_zh.html
1001 lines (915 loc) · 45.6 KB
/
index_zh.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Apache ShardingSphere</title>
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png" />
<link rel="manifest" href="/favicon/site.webmanifest" />
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<meta property="og:title" content="Apache ShardingSphere" />
<meta property="og:description" content="The ecosystem to transform any database into a distributed database system, and enhance it with sharding, elastic scaling, encryption features & more" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://shardingsphere.apache.org/" />
<meta property="og:image" content="https://shardingsphere.apache.org/images/base/logo.png" />
<meta name="twitter:card" value="summary" />
<meta name="twitter:site" value="@ShardingSphere" />
<script src="./js/libs/bodyScrollLock.min.js"></script>
<script src="./js/libs/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="./style/font.css" />
<link rel="stylesheet" href="./style/modern-normalize.css" />
<link rel="stylesheet" href="./style/base.css?20230629" />
<link rel="stylesheet" href="./style/index.css?20230629" />
<link rel="stylesheet" href="./style/firstSection.css?20230629" />
<link rel="stylesheet" href="./style/firstSectionResponsive.css?20230629" />
<link rel="stylesheet" href="./style/philosophy.css?202209091805" />
<link rel="stylesheet" href="./style/philosophyResponsive.css?20230629" />
<link rel="stylesheet" href="./style/coreFunctions.css?20230629" />
<link rel="stylesheet" href="./style/coreFunctionsResponsive.css?20230629" />
<link rel="stylesheet" href="./style/roadmap.css?20230629" />
<link rel="stylesheet" href="./style/roadmapResponsive.css?20230629" />
<link rel="stylesheet" href="./style/footer.css?20230629" />
<link rel="stylesheet" href="./style/footerResponsive.css?20230629" />
<link rel="stylesheet" href="./style/navigation.css?20230629" />
<link rel="stylesheet" href="./style/coreValue.css?20230629" />
<link rel="stylesheet" href="./style/coreValueResponsive.css?20230629" />
<link rel="stylesheet" type="text/css" href="./style/slick.min.css" />
<link rel="stylesheet" href="./style/slick.css" />
<!-- <link rel="stylesheet" href="./style/dark.css" /> -->
<!-- baidu Analytics -->
<script>
var _hmt = _hmt || []
;(function () {
var hm = document.createElement('script')
hm.src = 'https://hm.baidu.com/hm.js?d5a1dc8dcf63a64ee55b80de01c7fb1a'
var s = document.getElementsByTagName('script')[0]
s.parentNode.insertBefore(hm, s)
})()
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-HETCF66YL0"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
window.dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-HETCF66YL0', {
page_title: 'homepage_zh',
})
</script>
</head>
<body>
<!-- navigation -->
<nav class="navigation">
<div class="content">
<div class="logos">
<a href="/index_zh.html">
<img src="./images/base/sharding_logo.png" />
</a>
</div>
<div class="links">
<div class="i-drop-btn">
<span>文档</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/current/cn/overview" target="_blank">master</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/5.5.1/cn/overview" target="_blank">Latest Release</a>
</div>
<div class="dropListItem">
<a href="/legacy_zh.html" target="_blank">遗留</a>
</div>
<!-- <div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/5.1.1/cn/overview" target="_blank">5.1.1</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/5.1.0/cn/overview" target="_blank">5.1.0</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/5.0.0/cn/overview" target="_blank">5.0.0</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/5.0.0-beta/cn/overview" target="_blank">5.0.0-beta</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/5.0.0-alpha/cn/overview" target="_blank">5.0.0-alpha</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/4.1.1/cn/overview" target="_blank">4.1.1(遗留)</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/4.1.0/cn/overview" target="_blank">4.1.0(遗留)</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/legacy/4.x/document/cn/overview" target="_blank">4.0.0(遗留)</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/legacy/3.x/document/cn/overview" target="_blank">3.x(遗留)</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/legacy/2.x/cn/" target="_blank">2.x(遗留)</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/legacy/1.x/cn/" target="_blank">1.x(遗留)</a>
</div> -->
</div>
</div>
<div id="btn-community" class="i-drop-btn">
<span>博客</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/blog/cn/material" target="_blank">精选集</a>
</div>
<div class="dropListItem">
<a href="https://github.com/apache/shardingsphere/issues/650" target="_blank">汇总集</a>
</div>
<div class="dropListItem">
<a href="https://ieeexplore.ieee.org/document/9835604" target="_blank">学术成果</a>
</div>
</div>
</div>
<div class="i-drop-btn">
<span>社区</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/community/cn/involved/" target="_blank">参与贡献</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/community/cn/team/" target="_blank">团队成员</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/statistics/staging/index.html" target="_blank">项目报告</a>
</div>
<div class="dropListItem">
<a href="https://github.com/apache/shardingsphere/wiki" target="_blank">Wiki</a>
</div>
<div class="dropListItem">
<a href="https://github.com/apache/shardingsphere" target="_blank">GitHub</a>
</div>
<div class="dropListItem">
<a href="https://github.com/apache/shardingsphere/issues" target="_blank">缺陷跟踪</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/community/cn/powered-by/" target="_blank">采用公司</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/community/cn/involved/subscribe/" target="_blank">邮件列表</a>
</div>
<div class="dropListItem">
<a href="https://twitter.com/ShardingSphere" target="_blank">推特</a>
</div>
<div class="dropListItem">
<a href="https://apacheshardingsphere.slack.com/messages/C026MLH7F34" target="_blank">讨论群组</a>
</div>
<div class="dropListItem">
<div class="qrcode">
<img src="/images/footer/QRcode.jpg" alt="wechat qrcode">
扫码关注微信公众号
</div>
</div>
</div>
</div>
<div id="btn-subproject" class="i-drop-btn">
<span>子项目</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a class="i-drop-list" href="https://shardingsphere.apache.org/elasticjob/" target="_blank">ElasticJob</a>
</div>
<div class="dropListItem">
<a class="i-drop-list" href="https://shardingsphere.apache.org/oncloud/" target="_blank">OnCloud</a>
</div>
</div>
</div>
<!-- <div id="btn-asf" class="i-drop-btn">
<span>ASF</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a href="https://www.apache.org" target="_self">基金会</a>
</div>
<div class="dropListItem">
<a href="https://www.apache.org/licenses/" target="_self">证书</a>
</div>
<div class="dropListItem">
<a href="https://www.apache.org/events/current-event" target="_self">事件</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/community/cn/security/" target="_self">安全</a>
</div>
<div class="dropListItem">
<a href="https://www.apache.org/foundation/sponsorship.html" target="_self">赞助</a>
</div>
<div class="dropListItem">
<a href="https://www.apache.org/foundation/thanks.html" target="_self">致谢</a>
</div>
</div>
</div> -->
<a href="https://shardingsphere.apache.org/document/current/cn/downloads/" target="_blank">产品下载</a>
<div id="btn-subproject" class="i-drop-btn">
<span>语言</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a class="i-drop-list" href="/" target="_blank">English</a>
</div>
<div class="dropListItem">
<a class="i-drop-list" href="/index_zh.html" target="_blank">Chinese</a>
</div>
</div>
</div>
<!-- <span class="langs">
<a href="/">EN</a>
<div class="l"></div>
<a href="/index_zh.html">CN</a>
</span> -->
<span class="out-link">
<a href="https://github.com/apache/shardingsphere" target="_blank"><img src="./images/footer/github_black.png" /></a>
<a href="https://app.slack.com/client/T026JKU2DPF/C026MLH7F34" target="_blank"><img src="./images/footer/slack.png" /></a>
</span>
</div>
<div class="iconMenu"></div>
</div>
</nav>
<main>
<!-- first section -->
<section id="firstSection">
<div class="topShadow"></div>
<div class="container">
<div class="content">
<img class="logo" src="./images/firstSection/shardingSphereLogo.png" alt="logo" />
<div class="leftContent">
<!-- <h1>Database Plus</h1> -->
<h2>Apache ShardingSphere</h2>
<p class="subtitle">
Apache ShardingSphere 是一款分布式 SQL 事务和查询引擎,可通过数据分片、弹性伸缩、加密等能力对任意数据库进行增强。
</p>
<div class="buttons">
<a href="https://shardingsphere.apache.org/document/current/cn/quick-start/">
<button class="primary">快速入门</button>
</a>
<a class="link" href="https://shardingsphere.apache.org/document/current/cn/overview/">
<button class="learnMoreButton">了解更多</button>
</a>
<a class="link" target="_blank" href="https://shardingsphere.apache.org/oncloud/">
<button class="learnMoreButton">ShardingSphere-on-Cloud</button>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- core functions -->
<section id="coreFunctions">
<div class="container">
<div class="content">
<h2>核心功能</h2>
<div class="con-functions">
<div class="con-functions-col">
<div class="con-functions-item">
<img src="/images/coreValue/iconProductSharding.png" class="ico" />
<div class="itemm-detail">
<p class="title">数据分片</p>
<p class="desc">ShardingSphere 提供数据分片功能,可水平、垂直跨数据源分发数据,从而提升数据库集群性能和可扩展性。</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/coreValue/iconProductRead.png" class="ico" />
<div class="itemm-detail">
<p class="title">读写分离</p>
<p class="desc">基于对 SQL 语义理解及对底层数据库拓扑感知能力,ShardingSphere 提供灵活的读写流量拆分和读流量负载均衡。</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/coreValue/iconProductKernel.png" class="ico" />
<div class="itemm-detail">
<p class="title">高性能</p>
<p class="desc">利用 Apache ShardingSphere 解决数据库性能瓶颈,提升效率,实现数据库高性能。并在第38届 IEEE 数据工程国际会议( ICDE 2022) 上展示了这一突破性成果。</p>
</div>
</div>
</div>
<div class="con-functions-col">
<div class="con-functions-item">
<img src="/images/coreValue/iconProductExtension.png" class="ico" />
<div class="itemm-detail">
<p class="title">分布式事务</p>
<p class="desc">基于 XA 和 BASE 的混合事务引擎,ShardingSphere 提供在独立数据库上的分布式事务功能,保证跨数据源的数据一致性。</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/coreValue/iconProductEncryption.png" class="ico" />
<div class="itemm-detail">
<p class="title">数据加密及脱敏</p>
<p class="desc">ShardingSphere 提供完整、透明、安全、低成本的数据加密及脱敏解决方案。</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/coreValue/mutiDb.png" class="ico" />
<div class="itemm-detail">
<p class="title">多数据库支持</p>
<p class="desc">ShardingSphere 可以兼容所有符合 SQL-92 标准语法的数据库,包括 MySQL、PostgreSQL、SQL Server 和 Oracle ,用户可根据需求选择最适合的数据库。</p>
</div>
</div>
</div>
<div class="con-functions-col">
<div class="con-functions-item">
<img src="/images/coreValue/iconProductionFederated_query.png" class="ico" />
<div class="itemm-detail">
<p class="title">联邦查询</p>
<p class="desc">ShardingSphere 提供跨数据源的复杂查询分析能力,实现跨源的数据关联与聚合。</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/coreValue/iconProductRemove.png" class="ico" />
<div class="itemm-detail">
<p class="title">数据迁移</p>
<p class="desc">SharingSphere 提供跨数据源的数据迁移能力,并可支持重分片扩展。</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/philosophy/Cloud Native.png" class="ico" />
<div class="itemm-detail">
<p class="title">云原生</p>
<p class="desc">ShardingSphere天然支持云原生及多云架构,在构建分布式数据库架构的过程中轻松利用云计算的强大功能,实现性能、弹性、以及适应力的最大化。</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- design philosophy -->
<section id="philosophy">
<div class="container">
<div class="content">
<h2>适用场景</h2>
<div class="con-detail">
<div class="tab-nav">
<ul>
<li class="on">分布式数据库</li>
<li>数据安全</li>
<li>统一数据库</li>
</ul>
</div>
<div class="con-list">
<div class="con-item show">
<h4>分布式数据库</h4>
<div class="con-item-detail">
<ul>
<li>依托 ShardingSphere 开源分布式数据库解决方案,充分发挥大型数据库在高并发场景下的潜力。</li>
<li>解决单机数据库在存储和计算方面的瓶颈,同时规避因架构变化带来的技术风险。</li>
<li>使用数据分片、分布式事务和弹性伸缩等能力,确保单机数据库的稳定性,对接存储与计算的动态扩展需求。</li>
</ul>
<img src="./images/philosophy/Distributed Database.png" />
</div>
</div>
<div class="con-item">
<h4>数据安全</h4>
<div class="con-item-detail">
<ul>
<li>使用 ShardingSphere 实现自动化透明化保证用户数据安全,防止数据泄露,解决用户数据加密、数据脱敏等方面问题。</li>
<li>无需改动原有代码,即可在跨平台和异构环境下使用数据安全解决方案。 </li>
<li>提供数据加密、数据脱敏、可定制算法和密钥管理等能力,为数据安全保驾护航。</li>
</ul>
<img src="./images/philosophy/Data Security.png" />
</div>
</div>
<div class="con-item">
<h4>统一数据库</h4>
<div class="con-item-detail">
<ul>
<li>利用 ShardingSphere 构建统一的开源、云数据平台,兼容包括 MySQL、PostgreSQL、SQL Server、Oracle、openGauss 等多种异构数据库。</li>
<li>使用数据分片、加密、迁移和扩展等执行并行查询,提升系统吞吐量,突破性能瓶颈。</li>
<li>拥抱云原生及多云生态架构,结合天然适配云的属性,优雅实现数据库迁移上云。</li>
</ul>
<img src="./images/philosophy/Unified Database.png" />
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- core value -->
<!-- <section id="coreValue" style="display: none;">
<div class="container">
<div class="content">
<div class="main">
<h1>关于 Apache ShardingSphere</h1>
<p>
<span class="colorOrange800">Apache ShardingSphere</span>
是一款开源分布式数据库生态项目,由 JDBC、Proxy 和
Sidecar(规划中) 3
款产品组成。其核心采用可插拔架构,通过组件扩展功能。对上以数据库协议及 SQL 方式提供诸多增强功能,包括数据分片、访问路由、数据安全等;对下原生支持 MySQL、PostgreSQL、SQL Server、Oracle
等多种数据存储引擎。Apache ShardingSphere
项目理念,是提供数据库增强计算服务平台,进而围绕其上构建生态。充分利用现有数据库的计算与存储能力,通过插件化方式增强其核心能力,为企业解决在数字化转型中面临的诸多使用难点,为加速数字化应用赋能。
</p>
<p class="colorOrange800 textBold">
ShardingSphere 已于2020年4月16日成为 Apache
软件基金会的顶级项目。
</p>
</div>
<img class="image logo1" src="/images/coreValue/core.png" alt="core" />
<h1>产品核心</h1>
<div class="detailContent">
<img class="image logo2" src="/images/coreValue/core.png" alt="core" />
<div class="list">
<div class="listLeft">
<div class="card">
<img class="icon" src="/images/coreValue/iconProductDistribution.png" alt="Distribution" />
<div class="text">
<span class="title">水平扩展</span>
<p class="description">
数据存储不受单机磁盘容量限制,可通过增加数据服务器的数量提升存储能力,并可以随时随地动态的对数据节点进行扩容和缩容。
</p>
</div>
</div>
<div class="card">
<img class="icon" src="/images/coreValue/iconProductExtension.png" alt="Extension" />
<div class="text">
<span class="title">分布式事务</span>
<p class="description">
基于 XA 两阶段协议和柔性事务的可切换分布式事务引擎。
</p>
</div>
</div>
<div class="card">
<img class="icon" src="/images/coreValue/iconProductPlug.png" alt="Plug" />
<div class="text">
<span class="title">可插拔</span>
<p class="description">
项目的功能组件能够灵活的以可插拔的方式进行扩展,开发者能够像使用积木一样定制属于自己的独特系统。
</p>
</div>
</div>
</div>
<div class="listRight">
<div class="card">
<img class="icon" src="/images/coreValue/iconProductKernel.png" alt="Kernel" />
<div class="text">
<span class="title">计算存储分离</span>
<p class="description">
计算节点无状态,可通过水平扩展增加算力;存储节点可以和计算节点分层优化。可以通过计算下推充分利用存储节点的计算能力。
</p>
</div>
</div>
<div class="card">
<img class="icon" src="/images/coreValue/iconProductReplace.png" alt="Replace" />
<div class="text">
<span class="title">高可用 & 强一致</span>
<p class="description">
无缝整合数据库原生的高可用和强一致解决方案。
</p>
</div>
</div>
<div class="card">
<img class="icon" src="/images/coreValue/iconProductDistSQL.png" alt="DistSQL" />
<div class="text">
<span class="title">DistSQL</span>
<p class="description">
提供分布式 SQL,通过标准数据库的方式操作分布式资源和规则定义。
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="icon1"></div>
<div class="icon2"></div>
<div class="icon3"></div>
</section> -->
<!-- roadmap -->
<section id="roadmapSection" >
<h1 class="maintitle">版本演进</h1>
<div class="roadmapSectionContainer">
<div class="roadmapSlick">
<div class="cardItem">
<div class="card">
<div class="version">1.x</div>
<h2 class="title">Sharding-JDBC</h2>
<p class="content">初始版本,基于 JDBC 驱动,仅可进行分片。</p>
<div class="year">2016</div>
</div>
<div class="point"></div>
</div>
<div class="cardItem">
<div class="card">
<div class="version">2.x</div>
<h2 class="title">面向集群</h2>
<p class="content">
引入 ZooKeeper 作为注册中心,提供分布式能力。
</p>
<div class="year">2017</div>
</div>
<div class="point"></div>
</div>
<div class="cardItem">
<div class="card">
<div class="version">3.x</div>
<h2 class="title">Sharding-Proxy</h2>
<p class="content">
ShardingSphere-Proxy 上线,提供 like-database 的访问能力。
</p>
<div class="year">2018</div>
</div>
<div class="point"></div>
</div>
<div class="cardItem">
<div class="card">
<div class="version">4.x</div>
<h2 class="title">Apache ShardingSphere</h2>
<p class="content">
正式进入 Apache 基金会,并兼容各种关系型数据库。
</p>
<div class="year">2019</div>
</div>
<div class="point"></div>
</div>
<div class="cardItem">
<div class="card">
<div class="version">5.x</div>
<h2 class="title">可插拔</h2>
<p class="content">
内核可插拔化多种功能,例如加密、分片都可灵活组合使用。
</p>
<div class="year">2021</div>
<div class="flag"></div>
</div>
<div class="point"></div>
</div>
<div class="cardItem inactive">
<div class="card inactive">
<div class="version">6.x</div>
<h2 class="title">面向云</h2>
<p class="content">
ShardingSphere 通过 Helm Chart 和 Operator 方式扩展到云端。通过这些方式可将 ShardingSphere 部署在 Kubernetes,包括 AWS EKS、minikube 及自有 Kuberneters。
</p>
<div class="year">...</div>
</div>
<div class="point"></div>
</div>
<div class="cardItem inactive">
<div class="card inactive">
<div class="version">7.x</div>
<h2 class="title">面向生态</h2>
<p class="content">
Database Plus 理念实践化,通过 DistSQL 构建分布式可插拔生态。
</p>
<div class="year">...</div>
</div>
<div class="point"></div>
</div>
<div class="cardItem inactive">
<div class="card inactive">
<div class="version">8.x</div>
<h2 class="title">规划中</h2>
<p class="content"></p>
<div class="year">...</div>
</div>
<div class="point"></div>
</div>
</div>
<div class="shadow left"></div>
<div class="shadow right"></div>
</div>
</section>
</main>
<!-- footer -->
<footer>
<div class="container content">
<div class="logosAndCommunityList">
<div>
<div class="logos">
<a href="https://www.apache.org/foundation/contributing.html">
<img src="./images/base/support-apache.png" alt="Apache Support Logo" />
</a>
<a href="https://www.apache.org/">
<img src="./images/base/asf_logo.svg" alt="The Apache Software Foundation" />
</a>
</div>
<span class="text">
Copyright © 2018-2023, Apache ShardingSphere, ShardingSphere,
Apache, the Apache feather logo, and the Apache ShardingSphere
project logo are either registered trademarks or trademarks of The
Apache Software Foundation in the United States and other
countries.
</span>
</div>
<div class="communityList">
<div class="communitySubList">
<a href="https://github.com/apache/shardingsphere" class="item">
<img src="/images/footer/github.png" alt="github" />
<span>Github</span>
</a>
<a href="https://twitter.com/ShardingSphere" class="item">
<img src="/images/footer/twitter.png" alt="twitter" />
<span>Twitter</span>
</a>
</div>
<div class="communitySubList">
<a href="https://app.slack.com/client/T026JKU2DPF/C026MLH7F34" class="item">
<img src="/images/footer/slack.png" alt="slack" />
<span>Slack</span>
</a>
<a href="https://www.linkedin.com/showcase/apache-shardingsphere/" class="item">
<img src="/images/footer/linkedIn.png" alt="linkedIn" />
<span>LinkedIn</span>
</a>
</div>
<div class="communitySubList">
<a href="https://medium.com/@shardingsphere" class="item">
<img src="/images/footer/medium.png" alt="medium" />
<span>Medium</span>
</a>
<a class="item wechat">
<img src="/images/footer/webchat.png" alt="wechat" />
<span>WeChat</span>
<div class="wechat-detail" >
<img src="/images/footer/QRcode.jpg" alt="wechat qrcode">
<p>扫码关注<br>微信公众号</p>
</div>
</a>
</div>
<div class="communitySubList">
<a href="https://www.reddit.com/r/Apache_ShardingSphere/" class="item">
<img src="/images/footer/reddit.png" alt="reddit" />
<span>Reddit</span>
</a>
<div class="item">
<img src="/images/footer/black.png"/>
<span></span>
</div>
</div>
</div>
</div>
<div class="footerNavigation">
<div class="item">
<span>文档</span>
<div class="links">
<div class="item">
<a href="https://shardingsphere.apache.org/document/current/cn/overview" target="_blank">master</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/5.5.1/cn/overview" target="_blank">Latest Release</a>
</div>
<div class="item">
<a href="/legacy_zh.html" target="_blank">遗留</a>
</div>
<!-- <div class="item">
<a href="https://shardingsphere.apache.org/document/5.1.1/cn/overview" target="_blank">5.1.1</a>
</div>
<div class="item">
<a href="/document/5.1.0/cn/overview" target="_blank">5.1.0</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/5.0.0/cn/overview" target="_blank">5.0.0</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/5.0.0-beta/cn/overview" target="_blank">5.0.0-beta</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/5.0.0-alpha/cn/overview" target="_blank">5.0.0-alpha</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/4.1.1/cn/overview" target="_blank">4.1.1(遗留)</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/4.1.0/cn/overview" target="_blank">4.1.0(遗留)</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/legacy/4.x/document/cn/overview" target="_blank">4.x(遗留)</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/legacy/3.x/document/cn/overview" target="_blank">3.x(遗留)</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/legacy/2.x/cn/" target="_blank">2.x(遗留)</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/legacy/1.x/cn/" target="_blank">1.x(遗留)</a>
</div> -->
</div>
</div>
<div id="btn-community" class="item">
<span>博客</span>
<div class="links">
<div class="item">
<a href="https://shardingsphere.apache.org/blog/cn/material" target="_blank">精选集</a>
</div>
<div class="item">
<a href="https://github.com/apache/shardingsphere/issues/650" target="_blank">汇总集</a>
</div>
<div class="item">
<a href="https://ieeexplore.ieee.org/document/9835604" target="_blank">学术成果</a>
</div>
</div>
</div>
<div class="item">
<span>社区</span>
<div class="links">
<div class="item">
<a href="https://shardingsphere.apache.org/community/cn/involved/" target="_blank">参与贡献</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/community/cn/team/" target="_blank">团队成员</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/statistics/staging/index.html" target="_blank">项目报告</a>
</div>
<div class="item">
<a href="https://github.com/apache/shardingsphere/wiki" target="_blank">Wiki</a>
</div>
<div class="item">
<a href="https://github.com/apache/shardingsphere" target="_blank">GitHub</a>
</div>
<div class="item">
<a href="https://github.com/apache/shardingsphere/issues" target="_blank">缺陷跟踪</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/community/cn/powered-by/" target="_blank">采用公司</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/community/cn/involved/subscribe/" target="_blank">邮件列表</a>
</div>
<div class="item">
<a href="https://twitter.com/ShardingSphere" target="_blank">推特</a>
</div>
<div class="item">
<a href="https://apacheshardingsphere.slack.com/messages/C026MLH7F34" target="_blank">讨论群组</a>
</div>
</div>
</div>
<div id="btn-subproject" class="item">
<span>子项目</span>
<div class="links">
<div class="item">
<a class="i-drop-list" href="https://shardingsphere.apache.org/elasticjob/" target="_blank">ElasticJob</a>
</div>
<div class="item">
<a class="i-drop-list" href="https://shardingsphere.apache.org/oncloud/" target="_blank">OnCloud</a>
</div>
</div>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/current/cn/downloads/" target="_blank">产品下载</a>
</div>
<div id="btn-asf" class="item">
<span>ASF</span>
<div class="links">
<div class="item">
<a href="https://www.apache.org" target="_self">基金会</a>
</div>
<div class="item">
<a href="https://www.apache.org/licenses/" target="_self">证书</a>
</div>
<div class="item">
<a href="https://www.apache.org/events/current-event" target="_self">事件</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/community/cn/security/" target="_self">安全</a>
</div>
<div class="item">
<a href="https://www.apache.org/foundation/sponsorship.html" target="_self">赞助</a>
</div>
<div class="item">
<a href="https://www.apache.org/foundation/thanks.html" target="_self">致谢</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<div class="mobileMenu" style="display: none">
<div class="header">
<div class="logos">
<a href="https://www.apache.org/foundation/contributing.html">
<img src="./images/base/support-apache.png" alt="Apache Support Logo" />
</a>
<a href="https://www.apache.org/">
<img src="./images/base/asf_logo.svg" alt="The Apache Software Foundation" />
</a>
</div>
<div class="x"></div>
</div>
<div class="mobileMenuList">
<div class="item">
<span>文档</span>
<div class="arrowIcon"></div>
</div>
<div class="itemList">
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/current/cn/overview" target="_blank">master</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/5.5.1/cn/overview" target="_blank">Latest Release</a>
<a class="i-drop-list" href="/legacy_zh.html" target="_blank">遗留</a>
<!-- <a class="i-drop-list" href="https://shardingsphere.apache.org/document/5.1.1/cn/overview" target="_blank">5.1.1</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/5.1.0/cn/overview" target="_blank">5.1.0</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/5.0.0/cn/overview" target="_blank">5.0.0</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/5.0.0-beta/cn/overview" target="_blank">5.0.0-beta(遗留)</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/5.0.0-alpha/cn/overview" target="_blank">5.0.0-alpha(遗留)</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/4.1.1/cn/overview" target="_blank">4.1.1(遗留)</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/4.1.0/cn/overview" target="_blank">4.1.0(遗留)</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/legacy/4.x/document/cn/overview" target="_blank">4.x(遗留)</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/legacy/3.x/document/cn/overview" target="_blank">3.x(遗留)</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/legacy/2.x/cn/" target="_blank">2.x(遗留)</a>
<a class="i-drop-list" href="https://shardingsphere.apache.org/document/legacy/1.x/cn/" target="_blank">1.x(遗留)</a> -->
</div>
<div class="item">
<span>博客</span>
<div class="arrowIcon"></div>
</div>
<div class="itemList">
<a href="https://shardingsphere.apache.org/blog/cn/material" target="_blank">精选集</a>
<a href="https://github.com/apache/shardingsphere/issues/650" target="_blank">汇总集</a>
<a href="https://ieeexplore.ieee.org/document/9835604" target="_blank">学术成果</a>
</div>
<div class="item">
<span>社区</span>
<div class="arrowIcon"></div>
</div>
<div class="itemList">
<a href="https://shardingsphere.apache.org/community/cn/involved/" target="_blank">参与贡献</a>
<a href="https://shardingsphere.apache.org/community/cn/team/" target="_blank">团队成员</a>
<a href="https://shardingsphere.apache.org/statistics/staging/index.html" target="_blank">项目报告</a>
<a href="https://github.com/apache/shardingsphere/wiki" target="_blank">Wiki</a>
<a href="https://github.com/apache/shardingsphere" target="_blank">GitHub</a>
<a href="https://github.com/apache/shardingsphere/issues" target="_blank">缺陷跟踪</a>
<a href="https://shardingsphere.apache.org/community/cn/powered-by/" target="_blank">采用公司</a>
<a href="https://shardingsphere.apache.org/community/cn/involved/subscribe/" target="_blank">邮件列表</a>
<a href="https://twitter.com/ShardingSphere" target="_blank">推特</a>
<a href="https://apacheshardingsphere.slack.com/messages/C026MLH7F34" target="_blank">讨论群组</a>
<div class="qrcode">
<img src="/images/footer/QRcode.jpg" alt="wechat qrcode">
扫码关注微信公众号
</div>
</div>
<div class="item">
<span>子项目</span>
<div class="arrowIcon"></div>
</div>
<div class="itemList">
<a href="https://shardingsphere.apache.org/elasticjob/" target="_blank">ElasticJob</a>
<a href="https://shardingsphere.apache.org/oncloud/" target="_blank">OnCloud</a>
</div>
<div class="item">
<span>ASF</span>
<div class="arrowIcon"></div>
</div>
<div class="itemList">
<a href="https://www.apache.org" target="_self">基金会</a>
<a href="https://www.apache.org/licenses/" target="_self">证书</a>
<a href="https://www.apache.org/events/current-event" target="_self">事件</a>
<a href="https://shardingsphere.apache.org/community/cn/security/" target="_self">安全</a>
<a href="https://www.apache.org/foundation/sponsorship.html" target="_self">赞助</a>
<a href="https://www.apache.org/foundation/thanks.html" target="_self">致谢</a>
</div>
<a href="https://shardingsphere.apache.org/document/current/cn/downloads/" target="_blank" class="item">下载</a>
<div class="languageSelect item">
<span>Language</span>
<div class="arrowIcon"></div>
</div>
<div class="langs itemList">
<a href="/index_zh.html">
<span>CN</span>
</a>
<a href="/">
<span>English</span>
</a>
</div>
<div class="buttons">
<a href="https://shardingsphere.apache.org/document/current/cn/downloads/">
<button class="primary">产品下载</button>
</a>
<a href="https://shardingsphere.apache.org/document/current/cn/">
<button class="outline">了解更多</button>
</a>
</div>
</div>
<div class="out-link">
<a href="https://github.com/apache/shardingsphere" class="item">
<img src="/images/footer/github_black.png" alt="github" />
<span>Github</span>
</a>
<a href="https://app.slack.com/client/T026JKU2DPF/C026MLH7F34" class="item">
<img src="/images/footer/slack.png" alt="slack" />
<span>Slack</span>
</a>
</div>
</div>
<script type="text/javascript" src="./js/libs/slick.min.js"></script>
<script src="./js/index.js?20230629"></script>
</body>