-
Notifications
You must be signed in to change notification settings - Fork 191
/
index.html
971 lines (877 loc) · 43.2 KB
/
index.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
<!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 SharingSphere" />
<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?202209091805" />
<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" />
<!-- 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_en',
})
</script>
</head>
<body>
<!-- navigation -->
<nav class="navigation">
<div class="content">
<div class="logos">
<a href="/">
<img src="./images/base/sharding_logo.png" />
</a>
</div>
<div class="links">
<div class="i-drop-btn">
<span>Docs</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/current/en/overview" target="_blank">master</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/document/5.5.1/en/overview" target="_blank">Latest Release</a>
</div>
<div class="dropListItem">
<a href="/legacy.html" target="_blank">Legacy</a>
</div>
</div>
</div>
<div id="btn-community" class="i-drop-btn">
<span>Blog</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/blog/en/material" target="_blank">Selections</a>
</div>
<div class="dropListItem">
<a href="https://github.com/apache/shardingsphere/issues/650" target="_blank">Collections</a>
</div>
<div class="dropListItem">
<a href="https://ieeexplore.ieee.org/document/9835604" target="_blank">Academic Publications</a>
</div>
</div>
</div>
<div class="i-drop-btn">
<span>Community</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/community/en/involved/" target="_blank">Get Involved</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/community/en/team/" target="_blank">Team</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/statistics/staging/index.html" target="_blank">Project Reports</a>
</div>
<div class="dropListItem">
<a href="https://github.com/apache/shardingsphere/wiki" target="_blank">Wiki</a>
</div>
<em class="i-drop-line"></em>
<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">Issue Tracker </a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/community/en/powered-by/" target="_blank">Powered By</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/community/en/involved/subscribe/" target="_blank">Mailing List</a>
</div>
<div class="dropListItem">
<a href="https://twitter.com/ShardingSphere" target="_blank">Twitter</a>
</div>
<div class="dropListItem">
<a href="https://apacheshardingsphere.slack.com/messages/C026MLH7F34" target="_blank">Slack</a>
</div>
<div class="dropListItem">
<a href="/learning.html" target="_blank">Learning</a>
</div>
</div>
</div>
<div id="btn-subproject" class="i-drop-btn">
<span>Subproject</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/elasticjob/" target="_blank">ElasticJob</a>
</div>
<div class="dropListItem">
<a 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 .dropListItem class="i-drop-pop">
<div class="dropListItem">
<a href="https://www.apache.org" target="_self">Foundation</a>
</div>
<div class="dropListItem">
<a href="https://www.apache.org/licenses/" target="_self">License</a>
</div>
<div class="dropListItem">
<a href="https://www.apache.org/events/current-event" target="_self">Events</a>
</div>
<div class="dropListItem">
<a href="https://shardingsphere.apache.org/community/en/security/" target="_self">Security</a>
</div>
<div class="dropListItem">
<a href="https://www.apache.org/foundation/sponsorship.html" target="_self">Sponsorship</a>
</div>
<div class="dropListItem">
<a href="https://www.apache.org/foundation/thanks.html" target="_self">Thanks</a>
</div>
</div>
</div> -->
<a href="https://shardingsphere.apache.org/document/current/en/downloads/" target="_blank">Download</a>
<!-- <span class="langs">
<a href="/">EN</a>
<div class="l"></div>
<a href="/index_zh.html">CN</a>
</span> -->
<div id="langs" class="i-drop-btn">
<span>Language</span>
<span class="arrow"></span>
<div class="i-drop-pop">
<div class="dropListItem">
<a href="/" target="_blank">English</a>
</div>
<div class="dropListItem">
<a href="/index_zh.html" target="_blank">Chinese</a>
</div>
</div>
</div>
<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" class="en">
<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">
The distributed SQL transaction & query engine for data sharding, scaling, encryption, and more - on any database.
</p>
<div class="buttons">
<a href="https://shardingsphere.apache.org/document/current/en/quick-start/">
<button class="primary">Quick Start</button>
</a>
<a href="https://shardingsphere.apache.org/document/current/en/">
<button class="learnMoreButton">Learn More</button>
</a>
<a 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>Core Features</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">Data Sharding</p>
<p class="desc">ShardingSphere provides a distributed database solution based on the underlying database, which can scale computing and storage horizontally.</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/coreValue/iconProductRead.png" class="ico" />
<div class="itemm-detail">
<p class="title">Read/Write Splitting</p>
<p class="desc">ShardingSphere provides flexible read/write splitting capabilities and can achieve read access load balancing based on the understanding of SQL semantics and the ability to perceive the underlying database topology.</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/coreValue/iconProductKernel.png" class="ico" />
<div class="itemm-detail">
<p class="title">High Performance</p>
<p class="desc">Achieve unprecedented database performance levels with the incredible capabilities of Apache ShardingSphere. We successfully overcame performance bottlenecks and proudly presented our groundbreaking results at the prestigious IEEE 38th Conference on Data Engineering (ICDE).</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">Distributed Transaction</p>
<p class="desc">With a hybrid engine based on XA and BASE transactions, ShardingSphere provides distributed transaction capabilities on top of standalone databases, enabling data security across underlying data sources.</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/coreValue/iconProductEncryption.png" class="ico" />
<div class="itemm-detail">
<p class="title">Data Encryption & Masking</p>
<p class="desc">ShardingSphere provides a complete, transparent, secure, and low-cost data encryption & masking solution.</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/coreValue/mutiDb.png" class="ico" />
<div class="itemm-detail">
<p class="title">Multi-DB Support</p>
<p class="desc">ShardingSphere provides comprehensive multi-DB support, allowing you to choose the database that best suits your needs. Whether it's MySQL, PostgreSQL, SQL Server, Oracle Database, MariaDB, or any other SQL-92 compliant database, ShardingSphere seamlessly integrates with them all.</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">Query Federation</p>
<p class="desc">ShardingSphere provides complex data query and analysis capabilities across data sources, simplifying the data aggregation from different data locations.</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/coreValue/iconProductRemove.png" class="ico" />
<div class="itemm-detail">
<p class="title">Data Migration</p>
<p class="desc">SharingSphere provides migration capabilities to help users migrate the data from other data sources, while simultaneously performing data sharding.</p>
</div>
</div>
<div class="con-functions-item">
<img src="/images/philosophy/Cloud Native.png" class="ico" />
<div class="itemm-detail">
<p class="title">Cloud Native</p>
<p class="desc">Seamlessly integrate with cloud infrastructure and services thanks to ShardingSphere, and effortlessly harness the power of cloud computing to achieve optimal performance, elasticity, and resilience in your data management strategy.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- design philosophy -->
<section id="philosophy">
<div class="container">
<div class="content">
<h2>Scenarios</h2>
<div class="con-detail">
<div class="tab-nav">
<ul>
<li class="on">Distributed Database</li>
<li>Data Security</li>
<li>Unified Database</li>
</ul>
</div>
<div class="con-list">
<div class="con-item show">
<h4>Distributed Database</h4>
<div class="con-item-detail">
<ul>
<li>Unlock the full potential of high-concurrency scenarios with massive databases using ShardingSphere's open-source distributed database solution.</li>
<li>Say goodbye to the limitations of standalone databases in handling massive storage and computations, all without risking architectural changes.</li>
<li>Leverage powerful features like data sharding, distributed transactions, and elastic scalability, ensuring the stability of your standalone database while seamlessly meeting the dynamic storage and computation expansion requirements.</li>
</ul>
<img src="./images/philosophy/Distributed Database.png" />
</div>
</div>
<div class="con-item">
<h4>Data Security</h4>
<div class="con-item-detail">
<ul>
<li>Leverage the strength and transparency of Open Source to address the complexities of encrypted data storage, data masking, and global authority control in data security scenarios with ShardingSphere.</li>
<li>Experience seamless data security across diverse platforms and heterogeneous environments without the need for code modifications. </li>
<li>Leverage the advantages of powerful features, including online data encryption, data masking, customizable algorithms, and robust key management, to achieve unparalleled protection in data security scenarios.</li>
</ul>
<img src="./images/philosophy/Data Security.png" />
</div>
</div>
<div class="con-item">
<h4>Unified Database</h4>
<div class="con-item-detail">
<ul>
<li>Create a powerful open-source cloud data platform with ShardingSphere. Enjoy seamless compatibility with virtually all databases, including MySQL, PostgreSQL, SQL Server, Oracle, openGauss, and more.</li>
<li>Leverage a multitude of features such as data sharding, encryption, migration, and scaling to execute parallel queries, unlocking increased throughput, and eliminating performance bottlenecks.</li>
<li>Embrace a multi-cloud and cloud-native ecosystem, seamlessly migrating your database to the cloud with native support.</li>
</ul>
<img src="./images/philosophy/Unified Database.png" />
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- core value -->
<!-- <section id="coreValue">
<div class="container">
<div class="content">
<div class="main">
<h1>About Apache ShardingSphere</h1>
<p>
<span class="colorOrange800">Apache ShardingSphere</span> is an
open source ecosystem that allows you to transform any database
into a distributed database system, and enhance it with
sharding, elastic scaling, encryption features & more. The
project includes a JDBC, a Proxy and Sidecar (Planning). Thanks
to its plugin oriented architecture, features can be flexibly
expanded at will.
</p>
<p>
Virtually all databases are supported including MySQL,
PostgreSQL, SQL Server, Oracle Database, MariaDB or any other
SQL-92 database. The Apache ShardingSphere's community strives
to provide an ecosystem and services platform by enhancing
existing databases' computing & storage capabilities, and core
functions with plugins.
</p>
<p class="colorOrange800 textBold">
ShardingSphere became an Apache Top Level Project on April 16,
2020.
</p>
</div>
<img class="image logo1" src="/images/coreValue/core.png" alt="core" />
<h1>Core features</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/iconProductKernel.png" alt="Kernel" />
<div class="text">
<span class="title">Compute & Storage Split</span>
<p class="description">
Computing nodes are stateless, and can be increased by
scale out. Storage and computing nodes can be optimized
independently, with the possibility to share capacity
with computing push down.
</p>
</div>
</div>
<div class="card">
<img class="icon" src="/images/coreValue/iconProductExtension.png" alt="Extension" />
<div class="text">
<span class="title">Distributed Transaction</span>
<p class="description">
Providing a hybrid engine based on XA 2PC and BASE
transaction.
</p>
</div>
</div>
<div class="card">
<img class="icon" src="/images/coreValue/iconProductReplace.png" alt="Replace" />
<div class="text">
<span class="title">HA & Consensus</span>
<p class="description">
Integrated native database HA and consensus solution.
</p>
</div>
</div>
</div>
<div class="listRight">
<div class="card">
<img class="icon" src="/images/coreValue/iconProductDistribution.png" alt="Distribution" />
<div class="text">
<span class="title">Scale Out</span>
<p class="description">
Data storage is not limited by single disk capacity.
Storage capacity can be increased by increasing database
servers. Systems can migrate data dynamically, anytime
and anywhere, without requiring shutdown.
</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">
Operate resources and rules seamlessly like a native
database, thanks to Distributed SQL.
</p>
</div>
</div>
<div class="card">
<img class="icon" src="/images/coreValue/iconProductPlug.png" alt="Plug" />
<div class="text">
<span class="title">Extensible</span>
<p class="description">
Features can flexibly be embedded into the project.
Developers can customize their own ShardingSphere,
adding features at will just like building with lego
blocks.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- roadmap -->
<section id="roadmapSection">
<h1 class="maintitle">Project Roadmap</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">
Initial version, based on a JDBC driver, and for data sharding
only.
</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">To Cluster</h2>
<p class="content">
Can coordinate in a distributed environment, with ZooKeeper as
registry center.
</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">
Using a proxy to mock a database, compatible with all
programming languages and database workbenches.
</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">
For Apache software foundation version, change the brand, and support more databases except MySQL
</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">To Pluggable</h2>
<p class="content">
Micro kernel for pluggable oriented, everything is pluggable with 3 layers, add more features except sharding, such as encrypt.
</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">To Cloud</h2>
<p class="content">
The ShardingSphere ecosystem is expanding to include cloud solutions with Helm Charts and Operator. Operator and Helm Charts allow you to deploy ShardingSphere on Kubernetes, including services such as AWS EKS, self-hosted Kubernetes, or minikube.
</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">To Ecosystem</h2>
<p class="content">
Provide Database Plus production, build a standard via
DistSQL, and an ecosystem with a plugin oriented platform and
features.
</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">Planning</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 href="https://www.reddit.com/r/Apache_ShardingSphere/" class="item">
<img src="/images/footer/reddit.png" alt="reddit" />
<span>Reddit</span>
</a>
</div>
</div>
</div>
<nav class="footerNavigation">
<div class="item">
<span>Documentation</span>
<div class="links">
<div class="item">
<a href="https://shardingsphere.apache.org/document/current/en/overview" target="_blank">master</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/5.5.1/en/overview" target="_blank">Latest Release</a>
</div>
<div class="item">
<a href="/legacy.html" target="_blank">Legacy</a>
</div>
<!-- <div class="item">
<a href="https://shardingsphere.apache.org/document/5.0.0/en/overview" target="_blank">5.0.0</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/5.0.0-beta/en/overview" target="_blank">5.0.0-beta</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/5.0.0-alpha/en/overview" target="_blank">5.0.0-alpha</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/4.1.1/en/overview" target="_blank">4.1.1(Legacy)</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/4.1.0/en/overview" target="_blank">4.1.0(Legacy)</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/legacy/4.x/document/en/overview" target="_blank">4.x(Legacy)</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/legacy/3.x/document/en/overview" target="_blank">3.x(Legacy)</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/legacy/2.x/en/" target="_blank">2.x(Legacy)</a>
</div> -->
</div>
</div>
<div id="btn-community" class="item">
<span>Blog</span>
<div class="links">
<div class="item">
<a href="https://shardingsphere.apache.org/blog/en/material" target="_blank">Selections</a>
</div>
<div class="item">
<a href="https://github.com/apache/shardingsphere/issues/650" target="_blank">Collections</a>
</div>
<div class="item">
<a href="https://ieeexplore.ieee.org/document/9835604" target="_blank">Academic Publications</a>
</div>
</div>
</div>
<div class="item">
<span>Community</span>
<div class="links">
<div class="item">
<a href="https://shardingsphere.apache.org/community/en/involved/" target="_blank">Get Involved</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/community/en/team/" target="_blank">Team</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/statistics/staging/index.html" target="_blank">Project Reports</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">Issue Tracker </a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/community/en/powered-by/" target="_blank">Powered By</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/community/en/involved/subscribe/" target="_blank">Mailing List</a>
</div>
<div class="item">
<a href="https://twitter.com/ShardingSphere" target="_blank">Twitter</a>
</div>
<div class="item">
<a href="https://apacheshardingsphere.slack.com/messages/C026MLH7F34" target="_blank">Slack</a>
</div>
</div>
</div>
<div id="btn-subproject" class="item">
<span>Subproject</span>
<div class="links">
<div class="item">
<a href="https://shardingsphere.apache.org/elasticjob/" target="_blank">ElasticJob</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/oncloud/" target="_blank">OnCloud</a>
</div>
</div>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/document/current/en/downloads/" target="_blank">Download</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">Foundation</a>
</div>
<div class="item">
<a href="https://www.apache.org/licenses/" target="_self">License</a>
</div>
<div class="item">
<a href="https://www.apache.org/events/current-event" target="_self">Events</a>
</div>
<div class="item">
<a href="https://shardingsphere.apache.org/community/en/security/" target="_self">Security</a>
</div>
<div class="item">
<a href="https://www.apache.org/foundation/sponsorship.html" target="_self">Sponsorship</a>
</div>
<div class="item">
<a href="https://www.apache.org/foundation/thanks.html" target="_self">Thanks</a>
</div>
</div>
</div>
</nav>
</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>Docs</span>
<div class="arrowIcon"></div>
</div>
<div class="itemList">
<a href="https://shardingsphere.apache.org/document/current/en/overview" target="_blank">master</a>
<a href="https://shardingsphere.apache.org/document/5.5.1/en/overview" target="_blank">Latest Release</a>
<a href="/legacy.html" target="_blank">Legacy</a>
<!-- <a href="https://shardingsphere.apache.org/document/5.0.0/en/overview" target="_blank">5.0.0</a>
<a href="https://shardingsphere.apache.org/document/5.0.0-beta/en/overview" target="_blank">5.0.0-beta(Legacy)</a>
<a href="https://shardingsphere.apache.org/document/5.0.0-alpha/en/overview" target="_blank">5.0.0-alpha(Legacy)</a>
<a href="https://shardingsphere.apache.org/document/4.1.1/en/overview" target="_blank">4.1.1(Legacy)</a>
<a href="https://shardingsphere.apache.org/document/4.1.0/en/overview" target="_blank">4.1.0(Legacy)</a>
<a href="https://shardingsphere.apache.org/document/legacy/4.x/document/en/overview" target="_blank">4.x(Legacy)</a>
<a href="https://shardingsphere.apache.org/document/legacy/3.x/document/en/overview" target="_blank">3.x(Legacy)</a>
<a href="https://shardingsphere.apache.org/document/legacy/2.x/en/" target="_blank">2.x(Legacy)</a> -->
</div>
<div class="item">
<span>Blog</span>
<div class="arrowIcon"></div>
</div>
<div class="itemList">
<a href="https://shardingsphere.apache.org/blog/en/material" target="_blank">Selections</a>
<a href="https://github.com/apache/shardingsphere/issues/650" target="_blank">Collections</a>
<a href="https://ieeexplore.ieee.org/document/9835604" target="_blank">Academic Publications</a>
</div>
<div class="item">
<span>Community</span>
<div class="arrowIcon"></div>
</div>
<div class="itemList">
<a href="https://shardingsphere.apache.org/community/en/involved/" target="_blank">Get Involved</a>
<a href="https://shardingsphere.apache.org/community/en/team/" target="_blank">Team</a>
<a href="https://shardingsphere.apache.org/statistics/staging/index.html" target="_blank">Project Reports</a>
<a href="https://github.com/apache/shardingsphere/wiki" target="_blank">Wiki</a>
<em class="i-drop-line"></em>
<a href="https://github.com/apache/shardingsphere" target="_blank">GitHub</a>
<a href="https://github.com/apache/shardingsphere/issues" target="_blank">Issue Tracker</a>
<a href="https://shardingsphere.apache.org/community/en/powered-by/" target="_blank">Powered By</a>
<a href="https://shardingsphere.apache.org/community/en/involved/subscribe/" target="_blank">Mailing List</a>
<a href="https://twitter.com/ShardingSphere" target="_blank">Twitter</a>
<a href="https://apacheshardingsphere.slack.com/messages/C026MLH7F34" target="_blank" >Slack</a>
</div>
<div class="item">
<span>Subproject</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">Foundation</a>
<a href="https://www.apache.org/licenses/" target="_self">License</a>
<a href="https://www.apache.org/events/current-event" target="_self">Events</a>
<a href="https://shardingsphere.apache.org/community/en/security/" target="_self">Security</a>
<a href="https://www.apache.org/foundation/sponsorship.html" target="_self">Sponsorship</a>
<a href="https://www.apache.org/foundation/thanks.html" target="_self">Thanks</a>
</div> -->
<a href="https://shardingsphere.apache.org/document/current/en/downloads/" class="item">
<span>Download</span>
</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="/#English">
<span>English</span>
</a>
</div>
<div class="buttons">
<a href="https://shardingsphere.apache.org/document/current/en/downloads/">
<button class="primary">Download</button>
</a>
<a href="https://shardingsphere.apache.org/document/current/en/">
<button class="outline">Learn More</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>
</html>