why we’re excited about mysql 8...© 2017 percona. 1 peter zaitsev, ceo why we’re excited about...

Post on 06-Aug-2020

4 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

© 2017 Percona. 1

Peter Zaitsev, CEO

Why we’re excited about MySQL 8 Practical Look for Devs and Ops

November 11, 2017

Percona University Kiev

© 2017 Percona. 2

In This Presentation

Few Words about Percona

Few Words about Percona University Program

Exiting things MySQL 8 has to bring

© 2017 Percona. 3

Thank you Creative Quarter

Creative Quarter is a Ukraine-based managed infrastructure with flexible office space, supplies, facilities management and a full range of operational services

© 2017 Percona. 4

Thank you CNA

© 2017 Percona. 5

Few Words about Percona

© 2017 Percona. 6

Percona’s Purpose

To Champion Unbiased Open Source Database Solutions

© 2017 Percona. 7

We Do

Support, Managed Services for MySQL and MongoDB

Also Consulting and Training

Helping companies to migrate to Open Source Database

Develop Open Source Software

Solutions to maximize your success

© 2017 Percona. 8

Broad Software Ecosystem Support

MySQL Percona Server MariaDB Percona XtraDB Cluster

Galera Cluster for MySQL MariaDB Galera Cluster MongoDBPercona Server for

MongoDB

Amazon RDS for MySQL/MariaDB/Aurora

Google CloudSQL

© 2017 Percona. 9

100% Free and Open Source Software

Percona Server for MySQL

Percona Server for MongoDB

Percona XtraDB Cluster

Percona Xtrabackup

Percona Toolkit Percona

Monitoring and Management

9

© 2017 Percona. 10

Percona University

Educational Technical Presentations

Multiple Locations in the World

Partnering with Local Companies

Affordable to Attend (Free)

© 2017 Percona. 11

Percona University – What to Expect

Several presentations on different topics

Feel free to only attend those you’re interested in

Keep it Interactive! Ask Questions

Breaks

Prize Give away in the end

© 2017 Percona. 12

What’s Exciting in MySQL 8 ?For Devs and Ops

© 2017 Percona. 13

Warning

This assessment is done for Pre-GA MySQL 8, based on documentation and limited testing. We’re yet to see how they behave in production

© 2017 Percona. 14

Source Notes

Examples liberally borrowed from Oracle team presentations and Blog Posts

© 2017 Percona. 15

MySQL 8 for Ops

© 2017 Percona. 16

Ops care about

Stability

High Availability

Performance

Security

Observability

Manageability

© 2017 Percona. 17

Native Data Dictionary

About 10 years overdue

Atomic (Crash Save) DDLs

Much Faster Information Schema

No more MyISAM System Tables!

© 2017 Percona. 18

Fast Information Schema

Scaling from 5.000 to 1.000.000 tables

© 2017 Percona. 19

Much Better and Faster UTF8

• utf8mb4 as Default Charset

© 2017 Percona. 20

Security

ROLEs

Breakdown of SUPER Privileges

Password History

Faster cached-SHA2 Authentication

--skip-grants blocks remote connections

Redo and Undo Logs are now encrypted if Table Encryption is enabled

© 2017 Percona. 21

Persistent Auto Increment

Another feature 10 years overdue

Do not reset AUTO INCREMENT to the max value in the table on restart

© 2017 Percona. 22

Auto-Managed Undo Tablespace

Do not use system table space for undo space any more

Automatically reclaim space on disk from large transactions

© 2017 Percona. 23

Self Tuning (limited to Innodb)

Set innodb_dedicated_server to auto-tune •innodb_buffer_pool_size•innodb_log_file_size•innodb_flush_method

© 2017 Percona. 24

Partial In-Place Update for JSON

Can update field in JSON object without full re-write

Great for counters, statuses, timestamps etc

Only update and removal of element is supported

Only Optimizer and Replication support so far

© 2017 Percona. 25

Invisible Indexes

• Test impact of dropping indexes before actually dropping them

• Can use use_invisible_indexes to use invisible indexes in a session

© 2017 Percona. 26

TmpTable Storage Engine

More efficient storage engine for Internal Temporary tables

Efficient storage for VARCHAR and VARBINARY columns

BLOB/TEXT Columns are not supported (yet?)

© 2017 Percona. 27

Backup Locks

Prevent operation which may result in inconsistent backups

LOCK INSTANCE FOR BACKUP

© 2017 Percona. 28

Optimizer Histograms

• Detailed Statistics on Columns, not just Indexes

© 2017 Percona. 29

Improved Optimizer Cost Model

•Keep in account how much of data is cached vs on disk

© 2017 Percona. 30

More on MySQL 8 Optimizer

•http://www.unofficialmysqlguide.com/

© 2017 Percona. 31

Performance Schema

(Fake) Indexes for Faster Access

Error Instrumentation

Response Time Histograms (Global and Per Query Digest)

Query Examples for Summary by Digest

© 2017 Percona. 32

Performance Schema Performance

• Now is Interactively Usable at Scale

© 2017 Percona. 33

Persistent Global Variables

SET PERSIST innodb_buffer_pool_size = 1024 * 1024 * 1024;

© 2017 Percona. 34

Assumes storage is SSD by Default

•Start of the long journey

© 2017 Percona. 35

Binary Log On by Default

bin_log is enabled by default

log_slave_updates is enabled by default

Expire logs after 30 days by default

© 2017 Percona. 36

Query Cache Removed

It’s design caused more problems than it fixed

Use ProxySQL (or other) external query cache instead

© 2017 Percona. 37

Native Partitioning Only

Only “Native” Partitioning supported, not Generic One

Remove partitions from MyISAM partitioned tables or convert them

ALTER TABLE ... REMOVE PARTITIONING

ALTER TABLE ... ENGINE=INNODB

© 2017 Percona. 38

Resource Groups

• Isolation and Better Performance

© 2017 Percona. 39

Plain Better Performance at Scale

© 2017 Percona. 40

Feature Requests

Better Single Thread Performance

Parallel Single Query Processing Please

© 2017 Percona. 41

MySQL 8 for Devs

© 2017 Percona. 42

Innodb NO WAIT and SKIP LOCKED

© 2017 Percona. 43

Descending Indexes

Descending flag in index definition is no more ignored

Allows efficient handling of ORDER BY A ASC, B DESC queries

© 2017 Percona. 44

Aggregation of Relational into JSON

• JSON_ARRAYAGG() and JSON_OBJECTAGG()

© 2017 Percona. 45

JSON to Table Conversion (Labs)

© 2017 Percona. 46

Better JSON Document Data Extraction

© 2017 Percona. 47

Common Table Expression

• Recursive and Non-Recursive

© 2017 Percona. 48

Window Functions

• Like GROUP BY, But Preserving Rows rather than collapsing them

© 2017 Percona. 49

Much Better GIS

• “Matching or Exceeding PostgreSQL GIS Feature Set”

© 2017 Percona. 50

MySQL Document Store

Full Text Indexing

GeoJSON Support

Anyone Using Document Store ?

© 2017 Percona. 51

Summary

MySQL 8 looks like release to be excited about

Has a lot of new features both for Devs and Ops

© 2017 Percona. 52

Before we take a Break…

© 2017 Percona. 53

SAVE THE DATE!

CALL FOR PAPERS OPENING SOON!www.perconalive.com

April 23-25, 2018Santa Clara Convention Center

© 2017 Percona. 54

© 2017 Percona. 55

Have a Friend ?

Refer a friend and get $1000 if one is hired by Percona

… and eternal gratitude for helping to get the most amazing job

© 2017 Percona. 56

Some of our the people we’re looking for

MySQL and MongoDB Operations Experts

C/C++ Database Kernel Engineers

Backend Engineers (Go)

Technical Writers

Front End Web Developers

Front End Focused QA Engineer

PMM Dashboard Intern

© 2017 Percona. 57

Thank You!

top related