[maven-release-plugin] copy for tag 4.0.0-RC2
[maven-release-plugin] prepare release 4.0.0-RC2
68 files changed
tree: c8059f39f59dd9560561261c8b16e47b8cca94a2
  1. .github/
  2. .mvn/
  3. sharding-core/
  4. sharding-distribution/
  5. sharding-integration-test/
  6. sharding-jdbc/
  7. sharding-opentracing/
  8. sharding-orchestration/
  9. sharding-proxy/
  10. sharding-spring/
  11. sharding-sql-test/
  12. sharding-transaction/
  13. src/
  14. .gitignore
  15. .travis.yml
  16. CODE_OF_CONDUCT.md
  17. CONTRIBUTING.md
  18. DISCLAIMER
  19. jenkinsfile
  20. LICENSE
  21. NOTICE
  22. pom.xml
  23. README.md
  24. README_ZH.md
  25. RELEASE-NOTES.md
README.md

ShardingSphere - Distributed Database Middleware Ecosphere

Official website: https://shardingsphere.apache.org/

License Gitter GitHub release Stargazers over time

Total Lines Build Status Coverage Status Codacy Badge snyk OpenTracing-1.0 Badge Skywalking Tracing

Document

EN doc CN doc

Overview

ShardingSphere is an open-source ecosystem consisted of a set of distributed database middleware solutions, including 2 independent products, Sharding-JDBC & Sharding-Proxy & Sharding-Sidecar (todo). They all provide functions of data sharding, distributed transaction and database orchestration, applicable in a variety of situations such as Java isomorphism, heterogeneous language and cloud native.

Aiming at reasonably making full use of the computation and storage capacity of database in distributed system, ShardingSphere defines itself as a middleware, rather than a totally new type of database. As the cornerstone of many enterprises, relational database still takes a huge market share. Therefore, at current stage, we prefer to focus on its increment instead of a total overturn.

Apache releases is beginning from version 4.0.0

ShardingSphere Scope

Sharding-JDBC

Maven Status

Sharding-JDBC defines itself as a lightweight Java framework that provides extra service at Java JDBC layer. With client end connecting directly to the database, it provides service in the form of jar and requires no extra deployment and dependence. It can be considered as an enhanced JDBC driver, which is fully compatible with JDBC and all kinds of ORM frameworks.

  • Applicable in any ORM framework based on Java, such as JPA, Hibernate, Mybatis, Spring JDBC Template or direct use of JDBC.
  • Based on any third-party database connection pool, such as DBCP, C3P0, BoneCP, Druid, HikariCP.
  • Support any kind of database that conforms to JDBC standard: MySQL, Oracle, SQLServer and PostgreSQL for now.

Sharding-JDBC Architecture

Sharding-Proxy

Download Docker Pulls

Sharding-Proxy defines itself as a transparent database proxy, providing a database server that encapsulates database binary protocol to support heterogeneous languages. Friendlier to DBA, the MySQL/PostgreSQL version provided now can use any kind of client access (such as MySQL Command Client, MySQL Workbench, Navicat etc.) that is compatible of MySQL/PostgreSQL protocol to operate data.

  • Totally transparent to applications, it can be used directly as MySQL and PostgreSQL.
  • Applicable to any kind of compatible of client end that is compatible of MySQL and PostgreSQL protocol.

Sharding-Proxy Architecture

Sharding-Sidecar(TODO)

Sharding-Sidecar (TODO) defines itself as a cloud native database agent of Kubernetes environment, in charge of all the access to database in the form of sidecar. It provides a mesh layer interacting with database, we call this as Database Mesh.

Database Mesh emphasizes on how to connect distributed database access application with the database. Focusing on interaction, it effectively organizes the interaction between messy applications and database. The application and database that use Database Mesh to visit database will form a large grid system, where they just need to be put into the right position accordingly. They are all governed by mesh layer.

Sharding-Sidecar Architecture

Sharding-JDBCSharding-ProxySharding-Sidecar
DatabaseAnyMySQL/PostgreSQLMySQL/PostgreSQL
Connections Count CostHighLowHigh
Supported LanguagesJava OnlyAnyAny
PerformanceLow lossRelatively High lossLow loss
DecentralizationYesNoNo
Static EntryNoYesNo

Hybrid Architecture

Sharding-JDBC adopts decentralized architecture, applicable to high-performance light-weight OLTP application developed with Java; Sharding-Proxy provides static entry and all languages support, applicable for OLAP application and the sharding databases management and operation situation.

ShardingSphere is an ecosphere consists of multiple endpoints together. Through mixed use of Sharding-JDBC and Sharding-Proxy and unified sharding strategy by same registry center, ShardingSphere can build application system applicable to all kinds of scenarios. Architects can adjust the system architecture to the most applicable one to current business more freely.

ShardingSphere Hybrid Architecture

Features

Data Sharding

  • Database sharding & Table sharding
  • Read-write splitting
  • Sharding strategy customization
  • Centre-less Distributed primary key

Distributed Transaction

  • Unified Transaction API
  • XA transaction
  • BASE transaction

Database Orchestration

  • Dynamic Configuration
  • Orchestration & Governance
  • Data Encryption
  • Tracing & Observability
  • Elastic scaling out (Planing)

Project Status

Status

How to Build

Install maven and run command:

mvn clean install -Prelease

Artifact:

sharding-distribution/sharding-jdbc-distribution/target/apache-shardingsphere-incubating-${latest.release.version}-sharding-jdbc-bin.tar.gz: Binary package of Sharding-JDBC
sharding-distribution/sharding-proxy-distribution/target/apache-shardingsphere-incubating-${latest.release.version}-sharding-proxy-bin.tar.gz: Binary package of Sharding-Proxy
sharding-distribution/shardingsphere-src-distribution/target/apache-shardingsphere-incubating-${latest.release.version}-src.zip: Source code package of ShardingSphere