Proxysql use case scenarios plam 2016

28
ProxySQL Use Case Scenarios Percona Live Amsterdam Oct 3-5 2016 Alkin Tezuysal René Cannaò

Transcript of Proxysql use case scenarios plam 2016

Page 1: Proxysql use case scenarios    plam 2016

ProxySQL Use Case Scenarios

Percona Live Amsterdam Oct 3-5 2016

Alkin TezuysalRené Cannaò

Page 2: Proxysql use case scenarios    plam 2016

2

Who we are

• Alkin TezuysalSr. Technical Manager, Percona@ask_dba

• René CannaòMySQL SRE, Dropbox / ProxySQL@proxysql

Page 3: Proxysql use case scenarios    plam 2016

3

Top 5 reasons to use ProxySQL

• Improve database operations.

• Understand and solve performance issues.

• Create a proxy layer to shield the database.

• Add High-Availability to database topology.

• Empower the DBAs with great tool.

Page 4: Proxysql use case scenarios    plam 2016

4

ProxySQL Highlights

Scalability High Availability

Advanced Query Support Manageability

Page 5: Proxysql use case scenarios    plam 2016

5

Use case overview - Scalability

Connection Pooling and Multiplexing

Add connection pooling layer

Reduce connection thread overhead

Read / Write SplitMore scalability for any MySQL topology

Must for any heavy workloads

Read / Write Sharding

Effortless sharding implementation

Without Dev. support and cost savings

Page 6: Proxysql use case scenarios    plam 2016

6

Use case overview - High Availability

Seamless Failover Graceful failover support

Query rerouting

Load BalancingAllows easy scaling

For better utilization of servers

Cluster Aware Supports PXC/Galera implementations

Small footprint for big gain

Page 7: Proxysql use case scenarios    plam 2016

7

Use case overview - Advanced Queries

Query caching Cache frequently used data

Adds another cache layer

Query rewrite Add SQL flexibility

Faster problem solving

Query blocking Add database aware firewall

Without App. support

Page 8: Proxysql use case scenarios    plam 2016

8

Use case overview - Advanced Queries

Query mirroringAudit, Analyze, Review, Cache Warming

Allow benchmarking on live data

Query throttlingSet prioritization for important queries

Allows manual intervention to problem queries

Query timeout Add another timeout layer

Flexible query level timeout

Page 9: Proxysql use case scenarios    plam 2016

9

Use case overview - Manageability

Admin Utility Authentication support

Limit user access to database pool

Runtime reconfiguration

On the fly modifications

Configure database without restart or downtime

Monitoring Stats collection and reporting

Investigate database workload

Page 10: Proxysql use case scenarios    plam 2016

10

Scalability with ProxySQL - Connection Pooling

• Any application without persistent connection to database

• PHP applications to be specific without built in connection pool

Application MySQLProxySQL

• Reduces number of new connections to the database

Page 11: Proxysql use case scenarios    plam 2016

11

Scalability with ProxySQL – Connection Multiplexing

• Any application with persistent connection to database

• Java applications to be specific with built in connection pools

Application Pool

MySQL

• Reduce connections similar to Aurora

• Testing being performed for 300K database connections

Application PoolApplication

Pool

ProxySQL

Page 12: Proxysql use case scenarios    plam 2016

12

Scalability with ProxySQL - Read/Write Split

• On the fly Read / Write implementation

• Use read_only flag to switch traffic

Application

MySQL Master

• Load balancing made easy

MySQL Slave

Write hostgroups

Read hostgroups MySQL

Slave

Page 13: Proxysql use case scenarios    plam 2016

13

Scalability with ProxySQL – User and schema level sharding

• Granular sharding per username and schema

• Backend pooling based on user activity to specific schema

Application User A

ProxySQL

• Use advanced sharding to parallelize queries

• Scale beyond the sharding per host limitations.

Application User B

MySQL Master

MySQL Slave

MySQL Master

MySQL Slave

MySQL Master

MySQL Slave

Page 14: Proxysql use case scenarios    plam 2016

14

MySQL SlaveMySQL Master

High Availability with ProxySQL – Seamless failover

• Neither VIP setup nor service discovery needed

• Use read_only flag to switch traffic

Application Pool MySQL Master

• Integration with other HA Managers

Application PoolApplication

Pool

ProxySQL

Page 15: Proxysql use case scenarios    plam 2016

15

High Availability with ProxySQL – Improve Multi DC implementation

• No connection pools latency on SSL connections.

• Costly delays across the water.

MySQL MasterProxySQL

MySQL Master

ProxySQL

Application

DC1

DC2

Page 16: Proxysql use case scenarios    plam 2016

16

High Availability with ProxySQL – Adoption to Clustering

• PXC / Galera / Group ReplicationMySQL

ProxySQL

ProxySQL

Application

Node 1

Application

Application

MySQL

Node 2

MySQL

Node 3

Page 17: Proxysql use case scenarios    plam 2016

17

Advanced Queries with ProxySQL – Caching

• Improve performance on read intensive workloads

• Reduce slave provisioning

Application A

ProxySQL

• Improved query cache over default implementation

• Query aware caching over general caching

Application B

MySQL Master

MySQL Slave

MySQL Slave

MySQL Slave

Cache

MySQL Slave

MySQL Slave

Page 18: Proxysql use case scenarios    plam 2016

18

Advanced Queries with ProxySQL – Query Timeout

• Built in query killer a.k.a query sniper

• Adjustable threshold based on query rule

Application A

ProxySQL

• No idle or long running queries

Application B

MySQL Master

MySQL Slave

MySQL Slave

MySQL Slave

Query Timeouts

MySQL Slave

MySQL Slave

Page 19: Proxysql use case scenarios    plam 2016

19

Advanced Queries with ProxySQL – Firewall

• Protect database from unwanted traffic

• Stop unwanted user, account , application (new code)

Application A

ProxySQL

• Fast modification to database behavior

• Added protection for DDOS and other attacks.

Application B

Query Blocking

MySQL Master

MySQL Slave

MySQL Master

MySQL Slave

MySQL Master

MySQL Slave

Page 20: Proxysql use case scenarios    plam 2016

20

Advanced Queries with ProxySQL – Query rewrite engine

• Most wanted feature by DBAs

• Rewrite queries overloading the database on the fly.

Application A

ProxySQL

• Simply buy time until application can be modified

Application B

MySQL Master

MySQL Slave

MySQL Slave

MySQL Slave

Query Rewriting

MySQL Slave

MySQL Slave

Page 21: Proxysql use case scenarios    plam 2016

21

Advanced Queries with ProxySQL – Query retry

• Server failures or maintenance do not loose a query.

• Fails over and resubmits the query to another host.

Application A

ProxySQL

• Improved operation and new way of handling slaves.

Application B

MySQL Master

MySQL Slave

MySQL Slave

MySQL Slave

Query Retry

MySQL Slave

MySQL Slave

Page 22: Proxysql use case scenarios    plam 2016

22

Advanced Queries with ProxySQL – Query routing

• Selective routing based on importance.

• Use metrics based on stats_mysql_query_digest and decide

Application A

ProxySQL

• Go beyond read/write split.

Application B

MySQL Master

MySQL Slave

MySQL Slave

MySQL Slave

Query Routing

MySQL Slave

MySQL Slave

Page 23: Proxysql use case scenarios    plam 2016

23

Advanced Queries with ProxySQL – Query mirroring

• Mirror incoming queries to different back ends

• Use it for audit, analytics, cache warming, benchmarking.

Application A

ProxySQL

Application B

Query Mirroring

MySQL Master

Host A

Host B

MySQL Slave

MySQL Master

MySQL Slave

Page 24: Proxysql use case scenarios    plam 2016

24

Advanced Queries with ProxySQL

Query caching Query Timeout

Query Retry Query Blocking

Query Routing and Mirroring

Page 25: Proxysql use case scenarios    plam 2016

25

Clustered ProxySQL at scale

Tested with:

● 8 app servers with 3k clients’ connections each (24k total)● 4 middle layer proxysqls processing 4k connections each from local

proxysqls (16k total)● 256 backends/shard (meaning 256 routing rules) processing 600

connections each (150k total)Single ProxySQL was tested with up to 150k connections

At today, ProxySQL is able to process up to 750k QPS

Page 26: Proxysql use case scenarios    plam 2016

26

Questions

Page 27: Proxysql use case scenarios    plam 2016

27

Rate Our Session!

Page 28: Proxysql use case scenarios    plam 2016

DATABASE PERFORMANCE MATTERS