TeslaCN commented on code in PR #19791: URL: https://github.com/apache/shardingsphere/pull/19791#discussion_r935360982
########## docs/blog/content/material/2022_04_26_How_to_Use_ShardingSphere-Proxy_in_Real_Production_Scenarios_Your_Quick_Start_Guide.en.md: ########## @@ -0,0 +1,394 @@ ++++ +title = "How to Use ShardingSphere-Proxy in Real Production Scenarios—Your Quick Start Guide" +weight = 52 +chapter = true ++++ + +This post analyzes ops & maintenance solutions with experiences taken from real production scenarios for data sharding and other functions provided by ShardingSphere-Proxy Version 5.1.0. + +> Unless otherwise specified, in the following examples, when we say “database” we refer to [MySQL](https://www.mysql.com/). + +## What does ShardingSphere-Proxy do? +ShardingSphere-Proxy allows users to use Apache ShardingSphere just as if it were a native database. + +To gain a better understanding of what’s ShardingSphere-proxy, let’s take a look at its definition provided, by [Apache ShardingSphere’s official website](https://shardingsphere.apache.org/): + +> ShardingSphere-Proxy is a transparent database proxy that provide a database server containing database binary protocols designed to support heterogeneous languages. +> Currently, it supports MySQL and [PostgreSQL](https://www.postgresql.org/) (and PostgreSQL-based databases, such as [openGauss](https://shardingsphere.medium.com/apache-shardingsphere-opengauss-breaking-the-distributed-database-performance-record-with-10-b8ced05daa37)) and any related terminals (such as MySQL Command Client, https://blog.devart.com/mysql-command-line-client.html Workbench, etc.) that are compatible with MySQL or PostgreSQL protocols to operate data. It’s a DBA-friendly tool. + + +It’s worth noting that ShardingSphere-Proxy is a service process. In terms of client-side program connections, it is similar to a MySQL database. + +## Why you need ShardingSphere-Proxy +ShardingSphere-Proxy is a good choice when: + +- sharding rules or other rules are used; because data will be distributed across multiple database instances, inevitably making management inconvenient. +- non-Java developers need to leverage ShardingSphere capabilities. + +## 1. Application scenarios +There are many scenarios where ShardingSphere-JDBC is used for data sharding. If you have a user table and need to perform horizontal scaling with Hash for the User ID property, the way the client connects to the database is like this: + + + +Below are three real production scenarios: + +1. A testing engineer wants to see the information of user ID 123456 in databases & tables, and you need to tell the engineer which subtable the user is in. +2. You need to find out the total user growth in 2022 and overall user information for drafting a yearly report. +3. Your company is going to hold its 8th-anniversary event and you are required to provide a list of active users who have been registered for over 8 years. +Since the data is distributed across database shards and table shards, it is not easy to complete the above-mentioned tasks. If you develop code every time to satisfy these temporary requirements, it’ll be inefficient to say the least. ShardingSphere-Proxy is perfect for these scenarios. + +ShardingSphere-Proxy hides the actual backend databases, so the user operates the client side the same way as a database. + +For example, `t_user` is split into several real tables at the database level, that is from `t_user_0` to `t_user_9` . While operating ShardingSphere-Proxy on the client side, the user only needs to know one logical table `t_user`,and routing to the real tables is executed inside ShardingSphere-Proxy. + +**1. Logical table:** The logical name of the horizontally-scaled databases/tables with the same structure. A logical table is the logical identifier of tables in SQL. For example, user data is sharded into 10 tables according to the significant digits of the primary key, that is, `t_user_0` to `t_user_9` , and their common logical table is named `t_user`. + +**2. Actual table:** The physical table actually exists in databases after scale-out, that is, the above-mentioned `t_user_0` to `t_user_9` . + + + +## 2. The differences between ShardingSphere-JDBC and ShardingSphere-Proxy +After reading the above description, you probably feel that ShardingSphere-Proxy and ShardingSphere-JDBC are so similar. So what are the differences between the two? + + + +Check out more on the differences between the two below: + +1. ShardingSphere-JDBC is a `.jar` package. Its bottom layer completes SQL parsing, routing, rewriting, execution, and other processes by rewriting JDBC components. You should add the configuration files to implement the corresponding functions in the project, making it intrusive to applications. + +2. ShardingSphere-Proxy is a process service. In most cases, it is positioned as a productivity tool to assist operations. It disguises itself as a database, making itself non-intrusive to applications. The SQL execution logic in ShardingSphere-Proxy is the same as in ShardingSphere-JDBC because they share the same kernel. + +**Since ShardingSphere-Proxy is non-intrusive to applications, and it shares the same kernel with ShardingSphere-JDBC — so why do we still need ShardingSphere-JDBC?** + +1. When an application directly operates databases through ShardingSphere-JDBC, there is only one network I/O. However, when the application connects to ShardingSphere-Proxy, one network I/O, and then ShardingSphere-Proxy operates databases, and another network I/O occurs, in total two network I/O requests. + +2. There is one more layer of application called link, which is more likely to cause a data traffic bottleneck and potential risks to the application. In general, it’s suggested that an application should be used together with ShardingSphere-JDBC. + +Of course, ShardingSphere-JDBC and ShardingSphere-Proxy can be deployed simultaneously with a hybrid architecture. ShardingSphere-JDBC is suitable for high-performance lightweight Online Transaction Processing (OLTP) applications developed in Java, while ShardingSphere-Proxy is perfect for Online Analytical Processing (OLAP) applications and scenarios for managing and operating sharding databases. + + + + +## Quick Start Guide +There are three setup methods to install ShardingSphere-Proxy: binary package, Docker, and Helm. Stand-alone deployment and clustered deployment are also provided. Here, we take the standalone binary package as an example: + +1. Get the ShardingSphere-Proxy binary installation package [at this link](https://shardingsphere.apache.org/document/current/en/downloads/); + +2. Decompress it and then modify `conf/server.yaml` and files starting with the `config-` prefix to configure sharding, read/write splitting and other functions; + +3. If you use Linux as operating system, please run `bin/start.sh.` For Windows operating systems, please run `bin/start.bat` to bootup ShardingSphere-Proxy. + +The file directory looks like this: + +``` +├── LICENSE +├── NOTICE +├── README.txt +├── bin #Start/stop script +├── conf #service configuration, data sharding, read/write splitting, data encryption, and other function configuration files +├── lib # Jar package +└── licenses +``` +**1. Copy MySQL Java connector to the ext-lib package** +Download the `driver mysql-connector-java-5.1.47.jar` ([Click the link to download](https://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.47/mysql-connector-java-5.1.47.jar)) or `mysql-connector-java-8.0.11.jar` (https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.11/mysql-connector-java-8.0.11.jar) into the `ext-lib` package. Note:there is no `ext-lib` package in the initial directory, so you need to create one yourself. + +**2. Modify the `conf/server.yaml` configuration file** +For `server.yaml` the default operation mode is `Cluster Mode`. Below is how to configure the standalone operation mode. + +``` +mode: + type: Standalone #Standalone mode + repository: + type: File + props: + path: /Users/xxx/software/apache-shardingsphere-5.1.0-shardingsphere-proxy/file #persistent file paths such as metadata configuration + overwrite: false #Overwrite the existing metadata? + +rules: #Verification Info + - !AUTHORITY + users: #Init user + - root@%:root + - sharding@:sharding + provider: + type: ALL_PRIVILEGES_PERMITTED + - !TRANSACTION + defaultType: XA + providerType: Atomikos + - !SQL_PARSER + sqlCommentParseEnabled: true + sqlStatementCache: + initialCapacity: 2000 + maximumSize: 65535 + concurrencyLevel: 4 + parseTreeCache: + initialCapacity: 128 + maximumSize: 1024 + concurrencyLevel: 4 + +props: #public configuration + max-connections-size-per-query: 1 + kernel-executor-size: 16 # Infinite by default. + proxy-frontend-flush-threshold: 128 # The default value is 128. + proxy-opentracing-enabled: false + proxy-hint-enabled: false + sql-show: false + check-table-metadata-enabled: false + show-process-list-enabled: false + # Proxy backend query fetch size. A larger value may increase the memory usage of ShardingSphere Proxy. + # The default value is -1, which means set the minimum value for different JDBC drivers. + proxy-backend-query-fetch-size: -1 + check-duplicate-table-enabled: false + proxy-frontend-executor-size: 0 # Proxy frontend executor size. The default value is 0, which means let Netty decide. + # Available options of proxy backend executor suitable: OLAP(default), OLTP. The OLTP option may reduce time cost of writing packets to client, but it may increase the latency of SQL execution + # and block other clients if client connections are more than `proxy-frontend-executor-size`, especially executing slow SQL. + proxy-backend-executor-suitable: OLAP + proxy-frontend-max-connections: 0 # Less than or equal to 0 means no limitation. + sql-federation-enabled: false + # Available proxy backend driver type: JDBC (default), ExperimentalVertx + proxy-backend-driver-type: JDBC + +``` + +> Note: if you start a standalone ShardingSphere-Proxy and later need to change Proxy configurations, you need to set `mode.overwrite` to `true`. By doing so, ShardingSphere-Proxy will reload the metadata after startup. + +**3. Start ShardingSphere-Proxy** +Execute the bootup command: `sh bin/start.sh`. The default port `is 3307`, and the port can be replaced by adding parameters to the start script command: `sh bin/start.sh 3308` . + +To check whether ShardingSphere-Proxy started successfully, execute the check log command: `tail -100f logs/stdout.log` . + +The following information placed on the last line means that the startup is successful: + +``` +[INFO ] xxx-xx-xx xx:xx:xx.xxx [main] o.a.s.p.frontend.ShardingSphereProxy - ShardingSphere-Proxy Standalone mode started successfully +``` + +## Scenarios and applications +Based on actual prouction scenarios, we’d like to show you how you can utilize ShardingSphere-Proxy to meet your expectations. + + + +**1. Initialize the database & table** + +``` +# CREATE DATABASE +CREATE DATABASE user_sharding_0; + +CREATE DATABASE user_sharding_1; + +# CREATE TABLE +use user_sharding_0; + +CREATE TABLE `t_user_0` ( + `id` bigint (20) NOT NULL, + `user_id` bigint (20) NOT NULL, + `create_date` datetime DEFAULT NULL, + PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARSET = latin1; + +CREATE TABLE `t_user_1` ( + `id` bigint (20) NOT NULL, + `user_id` bigint (20) NOT NULL, + `create_date` datetime DEFAULT NULL, + PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARSET = latin1; + + +use user_sharding_1; + +CREATE TABLE `t_user_0` ( + `id` bigint (20) NOT NULL, + `user_id` bigint (20) NOT NULL, + `create_date` datetime DEFAULT NULL, + PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARSET = latin1; + + +CREATE TABLE `t_user_1` ( + `id` bigint (20) NOT NULL, + `user_id` bigint (20) NOT NULL, + `create_date` datetime DEFAULT NULL, + PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARSET = latin1; +``` +**2. Initialize sharding configuration in Proxy** + +``` Review Comment: ```suggestion ```yaml ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
