SlideShare a Scribd company logo
1 of 39
Download to read offline
MySQL 8.0.19
New Features
Summary
Olivier DASINI
MySQL Principal Solutions Architect
Blog: http://dasini.net/blog/en/
Twitter: @freshdaz
http://dasini.net/blog/en/
Me, Myself & I
➢
MySQL Geek
✔ Addicted to MySQL for 15+ years!
✔ Playing with databases for 20+ years
➢
MySQL Writer, Blogger and Speaker
✔ Also former : DBA, Consultant, Architect, Trainer, ...
➢
MySQL Principal Solutions Architect EMEA at Oracle
➢
Stay tuned! :
✔ Twitter : @freshdaz
✔ Blog : http://dasini.net/blog
Olivier DASINI
http://dasini.net/blog/en/
The following is just a summary of the MySQL 8.0.19 new features.
For a more thorough and exhaustive view please read the following :
➢
The MySQL 8.0.19 Maintenance Release is Generally Available
✔ https://mysqlserverteam.com/the-mysql-8-0-19-maintenance-release-is-generally-available/
➢
Changes in MySQL 8.0.19 (2020-01-13, General Availability)
✔ https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-19.html
➢
Changes in MySQL Shell 8.0.19 (2020-01-13, General Availability)
✔ https://dev.mysql.com/doc/relnotes/mysql-shell/8.0/en/news-8-0-19.html
➢
Changes in MySQL Router 8.0.19 (2020-01-13, General Availability)
✔ https://dev.mysql.com/doc/relnotes/mysql-router/en/news-8-0-19.html
And also the MySQL team Blogs :
➢
https://mysqlserverteam.com/
➢
https://mysqlhighavailability.com/
➢
https://mysqlrelease.com/
➢
http://insidemysql.com/
Disclaimer
http://dasini.net/blog/en/
The world's most popular open source database
http://dasini.net/blog/en/
Highlights
6
InnoDB ReplicaSet
SQL Improvements
 Table Value Constructors
 LIMIT in recursive CTE
 ALTER TABLE… DROP/ALTER CONSTRAINT
 More information to Duplicate Key Error
Account Management Enhancements
Time zone offset for Timestamp & Datetime
Information Schema views for SQL Roles
MySQL Document Store Enhancements
MySQL Shell Enhancements
MySQL Router Enhancements
MySQL InnoDB Cluster Enhancements
MySQL Replication Enhancements
MySQL NDB Cluster Enhancements
MySQL Enterprise New Features
Thanks to the Contributors
http://dasini.net/blog/en/
InnoDB ReplicaSet
http://dasini.net/blog/en/
InnoDB ReplicaSet 1/2
➢
MySQL InnoDB Replicaset provides an easy to use management solution
for MySQL Replication
✔ Easy-to-use AdminAPI for MySQL Replication in the MySQL Shell
➢
In just a few easy to use Shell commands, a MySQL Replication database
architecture can be configured from scratch
✔ Only 2 command lines to create a MySQL Replication cluster with 2 nodes
8
MySQL mysql_node1:3306 JS> var replicaset = dba.createReplicaSet('demoRS')
MySQL mysql_node1:3306 JS> replicaset.addInstance('root@mysql_node2:3306')
MySQL mysql_node1:3306 JS> replicaset.status()
http://dasini.net/blog/en/
InnoDB ReplicaSet 2/2
9
Resources
➢
The all new MySQL InnoDB ReplicaSet
✔ https://mysqlserverteam.com/introducing-mysql-innodb-replicaset/
➢
InnoDB ReplicaSet
✔ https://dev.mysql.com/doc/refman/8.0/en/mysql-innodb-replicasets.html
http://dasini.net/blog/en/
SQL Improvements
http://dasini.net/blog/en/
Table Value Constructors (TVC) 1/2
➢
Support explicit table clauses and table value constructors according to the SQL standard
➢
Implemented, respectively, as the TABLE statement and the VALUES statement
➢
TABLE table_name is equivalent to SELECT * FROM table_name
➢
VALUES consists of the VALUES keyword followed by a series of row constructors (ROW()),
separated by commas
11
TABLE city ORDER BY id LIMIT 2507, 1;
+------+----------------+-------------+----------------+------------+
| ID | Name | CountryCode | District | Population |
+------+----------------+-------------+----------------+------------+
| 2508 | Fort-de-France | MTQ | Fort-de-France | 94050 |
+------+----------------+-------------+----------------+------------+
INSERT INTO t1 VALUES ROW(1,2), ROW(10,20), ROW(100,200);
Query OK, 3 rows affected (0,01 sec)
Records: 3 Duplicates: 0 Warnings: 0
TABLE t1 LIMIT 1 OFFSET 2;
+------+------+
| col1 | col2 |
+------+------+
| 100 | 200 |
+------+------+
http://dasini.net/blog/en/
Table Value Constructors (TVC) 2/2
12
Resources
➢
TABLE Statement
✔ https://dev.mysql.com/doc/refman/8.0/en/table.html
➢
VALUES Statement
✔ https://dev.mysql.com/doc/refman/8.0/en/values.html
➢
WL#10358 - Implement table value constructors: VALUES
✔ https://dev.mysql.com/worklog/task/?id=10358
http://dasini.net/blog/en/
LIMIT in recursive CTE
➢
Support for LIMIT in Common Table Expression
✔ The LIMIT is on the total number of rows in the CTE, not on the number of rows
that each iteration may produce
13
Resources
➢
A new, simple way to figure out why your recursive CTE is running away
✔ https://mysqlserverteam.com/a-new-simple-way-to-figure-out-why-your-recursive-cte-is-running-
away/
➢
WL#12534 - Support LIMIT in recursive common table expression
✔ https://dev.mysql.com/worklog/task/?id=12534
http://dasini.net/blog/en/
ALTER TABLE… DROP/ALTER CONSTRAINT
➢
Support DROP CONSTRAINT & ALTER CONSTRAINT clauses to the
ALTER TABLE statement
14
Resources
➢
WL#12798 - Implement ALTER TABLE ... DROP/ALTER CONSTRAINT syntax
✔ https://dev.mysql.com/worklog/task/?id=12798
http://dasini.net/blog/en/
More information to Duplicate Key Error
➢
Extend the error information given in cases of duplicate key error to
include the table name along with the key name and key value
in the error message
➢
This work is based on a contribution from Facebook
15
Resources
➢
WL#12589 - Add more information to Duplicate Key Error
✔ https://dev.mysql.com/worklog/task/?id=12589
➢
Contribution by Facebook: Add more information to duplicate key error
✔ https://bugs.mysql.com/bug.php?id=92530
http://dasini.net/blog/en/
Account Management Enhancements
http://dasini.net/blog/en/
Account Management Enhancements
➢
Configure user accounts such that too many consecutive login failures due to
incorrect passwords cause temporary account locking
➢
Required number of failures and the lock time are configurable per account
17
Resources
➢
CREATE USER Password-Management Options
✔ https://dev.mysql.com/doc/refman/8.0/en/create-user.html#create-user-password-management
➢
WL#13515 - Add Oracle style per user FAILED_LOGIN_ATTEMPTS/PASSWORD_LOCK_TIME counters
✔ https://dev.mysql.com/worklog/task/?id=13515
mysql> CREATE USER 'dj'@'localhost' IDENTIFIED BY 'pwd' FAILED_LOGIN_ATTEMPTS 1
PASSWORD_LOCK_TIME 1;
$ mysql --user=dj
ERROR 3955 (HY000): Access denied for user 'dj'@'localhost'. Account is blocked for 1
day(s) (1 day(s) remaining) due to 1 consecutive failed logins.
mysql> ALTER USER 'dj'@'localhost' ACCOUNT UNLOCK;
http://dasini.net/blog/en/
Time zone offset for
Timestamp & Datetime
http://dasini.net/blog/en/
Time zone offset for Timestamp & Datetime
➢
Specify a time zone offset when inserting TIMESTAMP and DATETIME values into a table
✔ e.g. 2019-12-11 10:40:30-05:00 | 2003-04-14 03:30:00+10:00 | 2020-01-01 15:35:45+05:30
➢
Supported range for a timezone offset is -14:00 to +14:00
➢
Offsets are not displayed when retrieving the values
➢
This is a feature request from Booking.com
19
Resources
➢
The DATE, DATETIME, and TIMESTAMP Types
✔ https://dev.mysql.com/doc/refman/8.0/en/datetime.html
➢
MySQL Server Time Zone Support
✔ https://dev.mysql.com/doc/refman/8.0/en/time-zone-support.html
➢
WL#10828 - TIMESTAMP/DATETIME VALUES CAN INCLUDE TIMEZONE DETAILS
✔ https://dev.mysql.com/worklog/task/?id=10828
http://dasini.net/blog/en/
Information Schema views
for SQL Roles
http://dasini.net/blog/en/
Information Schema views for SQL Roles
➢
INFORMATION_SCHEMA contains several new views that expose role information
21
Resources
➢
Information_Schema Role Tables
✔ https://dev.mysql.com/doc/refman/8.0/en/administrable-role-authorizations-table.html
✔ https://dev.mysql.com/doc/refman/8.0/en/applicable-roles-table.html
✔ https://dev.mysql.com/doc/refman/8.0/en/enabled-roles-table.html
✔ https://dev.mysql.com/doc/refman/8.0/en/role-column-grants-table.html
✔ https://dev.mysql.com/doc/refman/8.0/en/role-routine-grants-table.html
✔ https://dev.mysql.com/doc/refman/8.0/en/role-table-grants-table.html
➢
WL#10895 - INFORMATION_SCHEMA views for Roles
✔ https://dev.mysql.com/worklog/task/?id=10895
mysql> SELECT TABLE_NAME, TABLE_TYPE FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA='information_schema' AND TABLE_NAME LIKE '%ROLE%';
+-----------------------------------+-------------+
| TABLE_NAME | TABLE_TYPE |
+-----------------------------------+-------------+
| ADMINISTRABLE_ROLE_AUTHORIZATIONS | SYSTEM VIEW |
| APPLICABLE_ROLES | SYSTEM VIEW |
| ENABLED_ROLES | SYSTEM VIEW |
| ROLE_COLUMN_GRANTS | SYSTEM VIEW |
| ROLE_ROUTINE_GRANTS | SYSTEM VIEW |
| ROLE_TABLE_GRANTS | SYSTEM VIEW |
+-----------------------------------+-------------+
http://dasini.net/blog/en/
MySQL Document Store Enhancements
http://dasini.net/blog/en/
Document Store Enhancements
➢
Schema validation when create a collection
✔ Implementation of a document schema validator in the X Plugin
✔ Uses the JSON_SCHEMA_VALID(<json_schema>, <json_document>) function
✔ e.g. var coll = schema.createCollection("mycollection", {validator: validationDoc})
23
Resources
➢
JSON Schema Validation Functions
✔ https://dev.mysql.com/doc/refman/8.0/en/json-validation-functions.html
➢
WL#12965 - X Protocol: add schema validation to create collection
✔ https://dev.mysql.com/worklog/task/?id=12965
➢
WL#13196 – X Protocol: Collection with json schema validation must return error for concrete row
✔ https://dev.mysql.com/worklog/task/?id=13196
➢
WL#13195 - Table with json schema validation constraint should return error for concrete row
✔ https://dev.mysql.com/worklog/task/?id=13195
➢
http://dasini.net/blog/en/
MySQL Shell Enhancements
http://dasini.net/blog/en/
MySQL Shell Enhancements
➢
MySQL InnoDB ReplicaSet
✔ MySQL InnoDB Replicaset provides an easy to use management solution for MySQL Replication
➢
Metadata Upgrade and Version Handling
✔ In order to support the new MySQL InnoDB ReplicaSets, the InnoDB Cluster metadata schema was
significantly extended
━
Users who have deployed MySQL InnoDB Clusters using previous versions of the Shell will need to perform a
Metadata Schema Upgrade in their cluster before they can use MySQL Shell 8.0.19 to manage them
➢
MySQL Router Management Functions
✔ New functions on the Admin API to allow viewing and managing this list of registered MySQL Router
instances
➢
Upgrade Checker Extensions
✔ The Upgrade checker tool has been improved for migrations from 5.7 to 8.0
25
Resources
➢
MySQL Shell 8.0.19 – What’s New?
✔ https://mysqlserverteam.com/mysql-shell-8-0-19-whats-new/
http://dasini.net/blog/en/
MySQL Router Enhancements
http://dasini.net/blog/en/
MySQL Router Enhancements
➢
Router now utilizes metadata version 2.0
➢
Added MySQL InnoDB ReplicaSet Cluster support
✔ Extend the MySQL Router to understand the concept of InnoDB ReplicaSets
━
Loading and caching the topology information from the metadata schema
━
Regularly updating the status information of the setup in order to perform the correct routing operations
➢
New bootstrap option to allow reuse of an existing account
✔ Add a startup option to specify the account the router should use when talking to the server
✔ The router needs a server account to be able to talk to the InnoDB Cluster
27
Resources
➢
Upgrading MySQL InnoDB Cluster Metadata
✔ https://mysqlserverteam.com/upgrading-mysql-innodb-cluster-metadata/
➢
WL#13417 - Handle the metadata upgrade in the Router
✔ https://dev.mysql.com/worklog/task/?id=13417
➢
WL#13188 - Add support for InnoDB ReplicaSet in Router
✔ https://dev.mysql.com/worklog/task/?id=13188
➢
WL#13177 - New bootstrap option (--account) to allow reuse of an existing account
✔ https://dev.mysql.com/worklog/task/?id=13177
http://dasini.net/blog/en/
MySQL InnoDB Cluster Enhancements
http://dasini.net/blog/en/
InnoDB Cluster Enhancements
29
➢
MySQL InnoDB ReplicaSet
✔ The brand new integrated solution using MySQL Replication
➢
New Metadata schema version and deployments upgrade
✔ The Metadata schema version was upgraded to support InnoDB ReplicaSet & to improve its
capabilities
➢
Router management - List Routers
✔ Command that allows users to obtain information about the cluster’s/replicaset’s Router instances
➢
Router management - Remove Router from Metadata
✔ Command that allows users to remove a Router instance registry from the Metadata
Resources
➢
The all new MySQL InnoDB ReplicaSet
✔ https://mysqlserverteam.com/introducing-mysql-innodb-replicaset/
➢
MySQL Shell AdminAPI – What’s new in 8.0.19?
✔ https://mysqlserverteam.com/mysql-shell-adminapi-whats-new-in-8-0-19/
➢
Upgrading MySQL InnoDB Cluster Metadata
✔ https://mysqlserverteam.com/upgrading-mysql-innodb-cluster-metadata/
http://dasini.net/blog/en/
MySQL Replication Enhancements
http://dasini.net/blog/en/
Replication Enhancements 1/2
➢
Configure Replication Applier to Require Row-based Replication only
✔ CHANGE MASTER parameter REQUIRE_ROW_FORMAT allows the user to specify that for a given
replication channel, it will only replicate from a server that is logging in ROW mode
━
Avoid common issues associate to statement based replication like the replication of LOAD DATA
instructions or replication of temporary tables and related data
➢
Preserve commit order on the replication applier, even if binary log is disabled
✔ Be able to turn on parallel replication on a replica that has no binary log enabled without
having different commit histories between the master and the slave
➢
TLSv1.3 configuration support for Replication Channels
✔ The user can now restrict cipher suites on the primary, and then configure the replication channels
on the secondaries as well, ensuring that there is a matching TLSv1.3 configuration between the
servers
33
http://dasini.net/blog/en/
Replication Enhancements 2/2
34
Resources
➢
Restrict MySQL replication to row based events
✔ https://mysqlhighavailability.com/restrict-replication-to-row-based-events/
➢
WL#12968 - Configure replication applier to require row-based replication
✔ https://dev.mysql.com/worklog/task/?id=12968
➢
Preserving commit order on replicas with binary log disabled
✔ https://mysqlhighavailability.com/preserve-commit-order-on-binlogless-replicas/
➢
WL#7846 - MTS: slave-preserve-commit-order when log-slave-updates/binlog is disabled
✔ https://dev.mysql.com/worklog/task/?id=7846
➢
WL#13392 - Support for TLS 1.3 in Asynchronous Replication
✔ https://dev.mysql.com/worklog/task/?id=13392
➢
WL#12361 - Support TLS 1.3 in the server and libmysql
✔ https://dev.mysql.com/worklog/task/?id=12361
http://dasini.net/blog/en/
MySQL NDB Cluster Enhancements
http://dasini.net/blog/en/
NDB Cluster Enhancements
36
➢
MySQL NDB Cluster 8.0.19 GA is a completely new generation of the world’s highest throughput
transactional datastore
➢
Starting with the 8.0 version NDB is developed in, built from, and released with the MySQL 8.0 source
code tree
➢
We aim to release all 8.0 releases on the same schedule as MySQL Server and with the respective
latest MySQL Server version
Resources
➢
NDB Cluster 8.0 is Generally Available
✔ https://mysqlhighavailability.com/ndb-cluster-8-0-is-generally-available/
➢
What is New in NDB Cluster
✔ https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-what-is-new.html
➢
Automatic Schema Synchronization in NDB Cluster 8.0: Part 1
✔ https://mysqlhighavailability.com/automatic-schema-synchronization-ndb-cluster-8-0-part-1/
➢
Automatic Schema Synchronization in NDB Cluster 8.0: Part 2
✔ https://mysqlhighavailability.com/automatic-schema-synchronization-in-ndb-cluster-8-0-part-2/
➢
Faster restarts with local and partial checkpoints in MySQL NDB Cluster
✔ https://mysqlhighavailability.com/faster-restarts-with-local-and-partial-checkpoints/
http://dasini.net/blog/en/
MySQL Enterprise New Features
http://dasini.net/blog/en/
Enterprise New Features
➢
MySQL Enterprise Backup
✔ Now includes the configuration files auto.cnf and mysqld-auto.cnf from a server in its
backup
✔ When fail to connect to a server, the warning returned by mysqlbackup now includes the
hostname and port number for TCP connections, and the socket information for socket
connections
➢
Binary Log Master Key Rotation
✔ Master key rotation for binary log encryption on the server in between a full and an incremental
backup, as well as between 2 incremental backups performed by mysqlbackup, is now supported
38
Resources
➢
MySQL Enterprise Backup User's Guide (Version 8.0.19)
✔ https://dev.mysql.com/doc/mysql-enterprise-backup/8.0/en/
➢
Binary Log Master Key Rotation
✔ https://dev.mysql.com/doc/refman/8.0/en/replication-binlog-encryption-key-rotation.html
http://dasini.net/blog/en/
Thanks to the Contributors
http://dasini.net/blog/en/
Thanks to the Contributors
Facebook
Satya Bodapati
Nikolai Kostrigin
Oleksandr Peresypkin
40
If you have patches you would like to contribute you can do so from :
➢
MySQL’s GitHub repository : https://github.com/mysql
➢
Requires signing the Oracle Contributor Agreement :
https://www.oracle.com/technetwork/community/oca-486395.html
http://dasini.net/blog/en/
The complete list of new features in MySQL 8.0
41
There are 250+ new features in MySQL 8.0...
https://mysqlserverteam.com/the-complete-list-of-new-features-in-mysql-8-0/
http://dasini.net/blog/en/
Thanks for using !

More Related Content

What's hot

MySQL Day Paris 2018 - Introduction & The State of the Dolphin
MySQL Day Paris 2018 - Introduction & The State of the DolphinMySQL Day Paris 2018 - Introduction & The State of the Dolphin
MySQL Day Paris 2018 - Introduction & The State of the DolphinOlivier DASINI
 
MySQL Performance Best Practices
MySQL Performance Best PracticesMySQL Performance Best Practices
MySQL Performance Best PracticesOlivier DASINI
 
MySQL Database Service - 100% Developed, Managed and Supported by the MySQL Team
MySQL Database Service - 100% Developed, Managed and Supported by the MySQL TeamMySQL Database Service - 100% Developed, Managed and Supported by the MySQL Team
MySQL Database Service - 100% Developed, Managed and Supported by the MySQL TeamOlivier DASINI
 
MySQL Document Store for Modern Applications
MySQL Document Store for Modern ApplicationsMySQL Document Store for Modern Applications
MySQL Document Store for Modern ApplicationsOlivier DASINI
 
MySQL Day Paris 2018 - MySQL InnoDB Cluster; A complete High Availability sol...
MySQL Day Paris 2018 - MySQL InnoDB Cluster; A complete High Availability sol...MySQL Day Paris 2018 - MySQL InnoDB Cluster; A complete High Availability sol...
MySQL Day Paris 2018 - MySQL InnoDB Cluster; A complete High Availability sol...Olivier DASINI
 
MySQL Day Paris 2018 - Upgrade from MySQL 5.7 to MySQL 8.0
MySQL Day Paris 2018 - Upgrade from MySQL 5.7 to MySQL 8.0MySQL Day Paris 2018 - Upgrade from MySQL 5.7 to MySQL 8.0
MySQL Day Paris 2018 - Upgrade from MySQL 5.7 to MySQL 8.0Olivier DASINI
 
Ohio Linux Fest -- MySQL's NoSQL
Ohio Linux Fest -- MySQL's NoSQLOhio Linux Fest -- MySQL's NoSQL
Ohio Linux Fest -- MySQL's NoSQLDave Stokes
 
Case Study: MySQL migration from latin1 to UTF-8
Case Study: MySQL migration from latin1 to UTF-8Case Study: MySQL migration from latin1 to UTF-8
Case Study: MySQL migration from latin1 to UTF-8Olivier DASINI
 
Mysql 8 vs Mariadb 10.4 Highload++ 2019
Mysql 8 vs Mariadb 10.4 Highload++ 2019Mysql 8 vs Mariadb 10.4 Highload++ 2019
Mysql 8 vs Mariadb 10.4 Highload++ 2019Alkin Tezuysal
 
Upgrade to MySQL 5.6 without downtime
Upgrade to MySQL 5.6 without downtimeUpgrade to MySQL 5.6 without downtime
Upgrade to MySQL 5.6 without downtimeOlivier DASINI
 
Mysql 8 vs Mariadb 10.4 Webinar 2020 Feb
Mysql 8 vs Mariadb 10.4 Webinar 2020 FebMysql 8 vs Mariadb 10.4 Webinar 2020 Feb
Mysql 8 vs Mariadb 10.4 Webinar 2020 FebAlkin Tezuysal
 
MySQL Utilities -- PyTexas 2015
MySQL Utilities -- PyTexas 2015MySQL Utilities -- PyTexas 2015
MySQL Utilities -- PyTexas 2015Dave Stokes
 
Welcome to MySQL
Welcome to MySQLWelcome to MySQL
Welcome to MySQLGrigale LTD
 
MySQL Database Architectures - 2020-10
MySQL Database Architectures -  2020-10MySQL Database Architectures -  2020-10
MySQL Database Architectures - 2020-10Kenny Gryp
 
Mysql nowwhat
Mysql nowwhatMysql nowwhat
Mysql nowwhatsqlhjalp
 
Midwest PHP Presentation - New MSQL Features
Midwest PHP Presentation - New MSQL FeaturesMidwest PHP Presentation - New MSQL Features
Midwest PHP Presentation - New MSQL FeaturesDave Stokes
 
MySQL Cluster 8.0 tutorial text
MySQL Cluster 8.0 tutorial textMySQL Cluster 8.0 tutorial text
MySQL Cluster 8.0 tutorial textFrazer Clement
 
MySQL Cloud Service Deep Dive
MySQL Cloud Service Deep DiveMySQL Cloud Service Deep Dive
MySQL Cloud Service Deep DiveMorgan Tocker
 
Southeast Linuxfest -- MySQL User Admin Tips & Tricks
Southeast Linuxfest -- MySQL User Admin Tips & TricksSoutheast Linuxfest -- MySQL User Admin Tips & Tricks
Southeast Linuxfest -- MySQL User Admin Tips & TricksDave Stokes
 

What's hot (20)

MySQL Day Paris 2018 - Introduction & The State of the Dolphin
MySQL Day Paris 2018 - Introduction & The State of the DolphinMySQL Day Paris 2018 - Introduction & The State of the Dolphin
MySQL Day Paris 2018 - Introduction & The State of the Dolphin
 
MySQL Performance Best Practices
MySQL Performance Best PracticesMySQL Performance Best Practices
MySQL Performance Best Practices
 
MySQL Database Service - 100% Developed, Managed and Supported by the MySQL Team
MySQL Database Service - 100% Developed, Managed and Supported by the MySQL TeamMySQL Database Service - 100% Developed, Managed and Supported by the MySQL Team
MySQL Database Service - 100% Developed, Managed and Supported by the MySQL Team
 
MySQL Document Store for Modern Applications
MySQL Document Store for Modern ApplicationsMySQL Document Store for Modern Applications
MySQL Document Store for Modern Applications
 
MySQL Day Paris 2018 - MySQL InnoDB Cluster; A complete High Availability sol...
MySQL Day Paris 2018 - MySQL InnoDB Cluster; A complete High Availability sol...MySQL Day Paris 2018 - MySQL InnoDB Cluster; A complete High Availability sol...
MySQL Day Paris 2018 - MySQL InnoDB Cluster; A complete High Availability sol...
 
MySQL Day Paris 2018 - Upgrade from MySQL 5.7 to MySQL 8.0
MySQL Day Paris 2018 - Upgrade from MySQL 5.7 to MySQL 8.0MySQL Day Paris 2018 - Upgrade from MySQL 5.7 to MySQL 8.0
MySQL Day Paris 2018 - Upgrade from MySQL 5.7 to MySQL 8.0
 
Ohio Linux Fest -- MySQL's NoSQL
Ohio Linux Fest -- MySQL's NoSQLOhio Linux Fest -- MySQL's NoSQL
Ohio Linux Fest -- MySQL's NoSQL
 
Top 15 MySQL parameters
Top 15 MySQL parameters Top 15 MySQL parameters
Top 15 MySQL parameters
 
Case Study: MySQL migration from latin1 to UTF-8
Case Study: MySQL migration from latin1 to UTF-8Case Study: MySQL migration from latin1 to UTF-8
Case Study: MySQL migration from latin1 to UTF-8
 
Mysql 8 vs Mariadb 10.4 Highload++ 2019
Mysql 8 vs Mariadb 10.4 Highload++ 2019Mysql 8 vs Mariadb 10.4 Highload++ 2019
Mysql 8 vs Mariadb 10.4 Highload++ 2019
 
Upgrade to MySQL 5.6 without downtime
Upgrade to MySQL 5.6 without downtimeUpgrade to MySQL 5.6 without downtime
Upgrade to MySQL 5.6 without downtime
 
Mysql 8 vs Mariadb 10.4 Webinar 2020 Feb
Mysql 8 vs Mariadb 10.4 Webinar 2020 FebMysql 8 vs Mariadb 10.4 Webinar 2020 Feb
Mysql 8 vs Mariadb 10.4 Webinar 2020 Feb
 
MySQL Utilities -- PyTexas 2015
MySQL Utilities -- PyTexas 2015MySQL Utilities -- PyTexas 2015
MySQL Utilities -- PyTexas 2015
 
Welcome to MySQL
Welcome to MySQLWelcome to MySQL
Welcome to MySQL
 
MySQL Database Architectures - 2020-10
MySQL Database Architectures -  2020-10MySQL Database Architectures -  2020-10
MySQL Database Architectures - 2020-10
 
Mysql nowwhat
Mysql nowwhatMysql nowwhat
Mysql nowwhat
 
Midwest PHP Presentation - New MSQL Features
Midwest PHP Presentation - New MSQL FeaturesMidwest PHP Presentation - New MSQL Features
Midwest PHP Presentation - New MSQL Features
 
MySQL Cluster 8.0 tutorial text
MySQL Cluster 8.0 tutorial textMySQL Cluster 8.0 tutorial text
MySQL Cluster 8.0 tutorial text
 
MySQL Cloud Service Deep Dive
MySQL Cloud Service Deep DiveMySQL Cloud Service Deep Dive
MySQL Cloud Service Deep Dive
 
Southeast Linuxfest -- MySQL User Admin Tips & Tricks
Southeast Linuxfest -- MySQL User Admin Tips & TricksSoutheast Linuxfest -- MySQL User Admin Tips & Tricks
Southeast Linuxfest -- MySQL User Admin Tips & Tricks
 

Similar to MySQL 8.0.19 - New Features Summary

MySQL crash course by moshe kaplan
MySQL crash course by moshe kaplanMySQL crash course by moshe kaplan
MySQL crash course by moshe kaplanMoshe Kaplan
 
Upgrade from MySQL 5.7 to MySQL 8.0
Upgrade from MySQL 5.7 to MySQL 8.0Upgrade from MySQL 5.7 to MySQL 8.0
Upgrade from MySQL 5.7 to MySQL 8.0Olivier DASINI
 
10 things every developer should know about their database to run word press ...
10 things every developer should know about their database to run word press ...10 things every developer should know about their database to run word press ...
10 things every developer should know about their database to run word press ...Otto Kekäläinen
 
Mysql 56-experiences-bugs-solutions-50mins
Mysql 56-experiences-bugs-solutions-50minsMysql 56-experiences-bugs-solutions-50mins
Mysql 56-experiences-bugs-solutions-50minsValeriy Kravchuk
 
How to Contribute Code to MySQL?
How to Contribute Code to MySQL?How to Contribute Code to MySQL?
How to Contribute Code to MySQL?Thava Alagu
 
MySQL Scaling Presentation
MySQL Scaling PresentationMySQL Scaling Presentation
MySQL Scaling PresentationTommy Falgout
 
13 things every developer should know about their database to run word press ...
13 things every developer should know about their database to run word press ...13 things every developer should know about their database to run word press ...
13 things every developer should know about their database to run word press ...Seravo
 
Confoo 2021 -- MySQL New Features
Confoo 2021 -- MySQL New FeaturesConfoo 2021 -- MySQL New Features
Confoo 2021 -- MySQL New FeaturesDave Stokes
 
Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019Antonios Chatzipavlis
 
Bringing the JAMstack to the Enterprise
Bringing the JAMstack to the EnterpriseBringing the JAMstack to the Enterprise
Bringing the JAMstack to the EnterpriseJamund Ferguson
 
TSQL in SQL Server 2012
TSQL in SQL Server 2012TSQL in SQL Server 2012
TSQL in SQL Server 2012Eduardo Castro
 
Webinar: MariaDB Provides the Solution to Ease Multi-Source Replication
Webinar: MariaDB Provides the Solution to Ease Multi-Source ReplicationWebinar: MariaDB Provides the Solution to Ease Multi-Source Replication
Webinar: MariaDB Provides the Solution to Ease Multi-Source ReplicationWagner Bianchi
 
Chandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 minsChandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 minswpnepal
 
Worcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20minsWorcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20minsChandra Prakash Thapa
 
Caching and tuning fun for high scalability @ FOSDEM 2012
Caching and tuning fun for high scalability @ FOSDEM 2012Caching and tuning fun for high scalability @ FOSDEM 2012
Caching and tuning fun for high scalability @ FOSDEM 2012Wim Godden
 
Developers, Be a Bada$$ with WP-CLI
Developers, Be a Bada$$ with WP-CLIDevelopers, Be a Bada$$ with WP-CLI
Developers, Be a Bada$$ with WP-CLIWP Engine
 

Similar to MySQL 8.0.19 - New Features Summary (20)

MySQL crash course by moshe kaplan
MySQL crash course by moshe kaplanMySQL crash course by moshe kaplan
MySQL crash course by moshe kaplan
 
Upgrade from MySQL 5.7 to MySQL 8.0
Upgrade from MySQL 5.7 to MySQL 8.0Upgrade from MySQL 5.7 to MySQL 8.0
Upgrade from MySQL 5.7 to MySQL 8.0
 
10 things every developer should know about their database to run word press ...
10 things every developer should know about their database to run word press ...10 things every developer should know about their database to run word press ...
10 things every developer should know about their database to run word press ...
 
Mysql 56-experiences-bugs-solutions-50mins
Mysql 56-experiences-bugs-solutions-50minsMysql 56-experiences-bugs-solutions-50mins
Mysql 56-experiences-bugs-solutions-50mins
 
High availability disaster recovery 101
High availability   disaster recovery 101High availability   disaster recovery 101
High availability disaster recovery 101
 
Mysql ppt
Mysql pptMysql ppt
Mysql ppt
 
How to Contribute Code to MySQL?
How to Contribute Code to MySQL?How to Contribute Code to MySQL?
How to Contribute Code to MySQL?
 
MySQL Scaling Presentation
MySQL Scaling PresentationMySQL Scaling Presentation
MySQL Scaling Presentation
 
13 things every developer should know about their database to run word press ...
13 things every developer should know about their database to run word press ...13 things every developer should know about their database to run word press ...
13 things every developer should know about their database to run word press ...
 
Confoo 2021 -- MySQL New Features
Confoo 2021 -- MySQL New FeaturesConfoo 2021 -- MySQL New Features
Confoo 2021 -- MySQL New Features
 
Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019
 
Bringing the JAMstack to the Enterprise
Bringing the JAMstack to the EnterpriseBringing the JAMstack to the Enterprise
Bringing the JAMstack to the Enterprise
 
TSQL in SQL Server 2012
TSQL in SQL Server 2012TSQL in SQL Server 2012
TSQL in SQL Server 2012
 
Webinar: MariaDB Provides the Solution to Ease Multi-Source Replication
Webinar: MariaDB Provides the Solution to Ease Multi-Source ReplicationWebinar: MariaDB Provides the Solution to Ease Multi-Source Replication
Webinar: MariaDB Provides the Solution to Ease Multi-Source Replication
 
Chandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 minsChandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 mins
 
Worcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20minsWorcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20mins
 
Caching and tuning fun for high scalability @ FOSDEM 2012
Caching and tuning fun for high scalability @ FOSDEM 2012Caching and tuning fun for high scalability @ FOSDEM 2012
Caching and tuning fun for high scalability @ FOSDEM 2012
 
Raj mysql
Raj mysqlRaj mysql
Raj mysql
 
Developers, Be a Bada$$ with WP-CLI
Developers, Be a Bada$$ with WP-CLIDevelopers, Be a Bada$$ with WP-CLI
Developers, Be a Bada$$ with WP-CLI
 
Stored procedure
Stored procedureStored procedure
Stored procedure
 

More from Olivier DASINI

MySQL Day Paris 2018 - MySQL JSON Document Store
MySQL Day Paris 2018 - MySQL JSON Document StoreMySQL Day Paris 2018 - MySQL JSON Document Store
MySQL Day Paris 2018 - MySQL JSON Document StoreOlivier DASINI
 
MySQL 8.0, what's new ? - Forum PHP 2018
MySQL 8.0, what's new ? - Forum PHP 2018MySQL 8.0, what's new ? - Forum PHP 2018
MySQL 8.0, what's new ? - Forum PHP 2018Olivier DASINI
 
MySQL JSON Document Store - A Document Store with all the benefits of a Trans...
MySQL JSON Document Store - A Document Store with all the benefits of a Trans...MySQL JSON Document Store - A Document Store with all the benefits of a Trans...
MySQL JSON Document Store - A Document Store with all the benefits of a Trans...Olivier DASINI
 
MySQL 8.0 - What's New ?
MySQL 8.0 - What's New ?MySQL 8.0 - What's New ?
MySQL 8.0 - What's New ?Olivier DASINI
 
MySQL Document Store - A Document Store with all the benefts of a Transactona...
MySQL Document Store - A Document Store with all the benefts of a Transactona...MySQL Document Store - A Document Store with all the benefts of a Transactona...
MySQL Document Store - A Document Store with all the benefts of a Transactona...Olivier DASINI
 
MySQL 5.7 InnoDB Cluster (Jan 2018)
MySQL 5.7 InnoDB Cluster (Jan 2018)MySQL 5.7 InnoDB Cluster (Jan 2018)
MySQL 5.7 InnoDB Cluster (Jan 2018)Olivier DASINI
 
MySQL InnoDB Cluster - A complete High Availability solution for MySQL
MySQL InnoDB Cluster - A complete High Availability solution for MySQLMySQL InnoDB Cluster - A complete High Availability solution for MySQL
MySQL InnoDB Cluster - A complete High Availability solution for MySQLOlivier DASINI
 
MySQL InnoDB Cluster - Meetup Oracle MySQL / AFUP Paris
MySQL InnoDB Cluster - Meetup Oracle MySQL / AFUP ParisMySQL InnoDB Cluster - Meetup Oracle MySQL / AFUP Paris
MySQL InnoDB Cluster - Meetup Oracle MySQL / AFUP ParisOlivier DASINI
 
MySQL Day Paris 2016 - MySQL Enterprise Edition
MySQL Day Paris 2016 - MySQL Enterprise EditionMySQL Day Paris 2016 - MySQL Enterprise Edition
MySQL Day Paris 2016 - MySQL Enterprise EditionOlivier DASINI
 
MySQL Day Paris 2016 - Introducing Oracle MySQL Cloud Service
MySQL Day Paris 2016 - Introducing Oracle MySQL Cloud ServiceMySQL Day Paris 2016 - Introducing Oracle MySQL Cloud Service
MySQL Day Paris 2016 - Introducing Oracle MySQL Cloud ServiceOlivier DASINI
 
MySQL Day Paris 2016 - MySQL as a Document Store
MySQL Day Paris 2016 - MySQL as a Document StoreMySQL Day Paris 2016 - MySQL as a Document Store
MySQL Day Paris 2016 - MySQL as a Document StoreOlivier DASINI
 
MySQL Day Paris 2016 - MySQL HA: InnoDB Cluster and NDB Cluster
MySQL Day Paris 2016 - MySQL HA: InnoDB Cluster and NDB ClusterMySQL Day Paris 2016 - MySQL HA: InnoDB Cluster and NDB Cluster
MySQL Day Paris 2016 - MySQL HA: InnoDB Cluster and NDB ClusterOlivier DASINI
 
MySQL Day Paris 2016 - State Of The Dolphin
MySQL Day Paris 2016 - State Of The DolphinMySQL Day Paris 2016 - State Of The Dolphin
MySQL Day Paris 2016 - State Of The DolphinOlivier DASINI
 
What's New in MySQL 5.7
What's New in MySQL 5.7What's New in MySQL 5.7
What's New in MySQL 5.7Olivier DASINI
 

More from Olivier DASINI (14)

MySQL Day Paris 2018 - MySQL JSON Document Store
MySQL Day Paris 2018 - MySQL JSON Document StoreMySQL Day Paris 2018 - MySQL JSON Document Store
MySQL Day Paris 2018 - MySQL JSON Document Store
 
MySQL 8.0, what's new ? - Forum PHP 2018
MySQL 8.0, what's new ? - Forum PHP 2018MySQL 8.0, what's new ? - Forum PHP 2018
MySQL 8.0, what's new ? - Forum PHP 2018
 
MySQL JSON Document Store - A Document Store with all the benefits of a Trans...
MySQL JSON Document Store - A Document Store with all the benefits of a Trans...MySQL JSON Document Store - A Document Store with all the benefits of a Trans...
MySQL JSON Document Store - A Document Store with all the benefits of a Trans...
 
MySQL 8.0 - What's New ?
MySQL 8.0 - What's New ?MySQL 8.0 - What's New ?
MySQL 8.0 - What's New ?
 
MySQL Document Store - A Document Store with all the benefts of a Transactona...
MySQL Document Store - A Document Store with all the benefts of a Transactona...MySQL Document Store - A Document Store with all the benefts of a Transactona...
MySQL Document Store - A Document Store with all the benefts of a Transactona...
 
MySQL 5.7 InnoDB Cluster (Jan 2018)
MySQL 5.7 InnoDB Cluster (Jan 2018)MySQL 5.7 InnoDB Cluster (Jan 2018)
MySQL 5.7 InnoDB Cluster (Jan 2018)
 
MySQL InnoDB Cluster - A complete High Availability solution for MySQL
MySQL InnoDB Cluster - A complete High Availability solution for MySQLMySQL InnoDB Cluster - A complete High Availability solution for MySQL
MySQL InnoDB Cluster - A complete High Availability solution for MySQL
 
MySQL InnoDB Cluster - Meetup Oracle MySQL / AFUP Paris
MySQL InnoDB Cluster - Meetup Oracle MySQL / AFUP ParisMySQL InnoDB Cluster - Meetup Oracle MySQL / AFUP Paris
MySQL InnoDB Cluster - Meetup Oracle MySQL / AFUP Paris
 
MySQL Day Paris 2016 - MySQL Enterprise Edition
MySQL Day Paris 2016 - MySQL Enterprise EditionMySQL Day Paris 2016 - MySQL Enterprise Edition
MySQL Day Paris 2016 - MySQL Enterprise Edition
 
MySQL Day Paris 2016 - Introducing Oracle MySQL Cloud Service
MySQL Day Paris 2016 - Introducing Oracle MySQL Cloud ServiceMySQL Day Paris 2016 - Introducing Oracle MySQL Cloud Service
MySQL Day Paris 2016 - Introducing Oracle MySQL Cloud Service
 
MySQL Day Paris 2016 - MySQL as a Document Store
MySQL Day Paris 2016 - MySQL as a Document StoreMySQL Day Paris 2016 - MySQL as a Document Store
MySQL Day Paris 2016 - MySQL as a Document Store
 
MySQL Day Paris 2016 - MySQL HA: InnoDB Cluster and NDB Cluster
MySQL Day Paris 2016 - MySQL HA: InnoDB Cluster and NDB ClusterMySQL Day Paris 2016 - MySQL HA: InnoDB Cluster and NDB Cluster
MySQL Day Paris 2016 - MySQL HA: InnoDB Cluster and NDB Cluster
 
MySQL Day Paris 2016 - State Of The Dolphin
MySQL Day Paris 2016 - State Of The DolphinMySQL Day Paris 2016 - State Of The Dolphin
MySQL Day Paris 2016 - State Of The Dolphin
 
What's New in MySQL 5.7
What's New in MySQL 5.7What's New in MySQL 5.7
What's New in MySQL 5.7
 

Recently uploaded

Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxolyaivanovalion
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Valters Lauzums
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxolyaivanovalion
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxolyaivanovalion
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceDelhi Call girls
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightDelhi Call girls
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...amitlee9823
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Delhi Call girls
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 

Recently uploaded (20)

Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 

MySQL 8.0.19 - New Features Summary

  • 1. MySQL 8.0.19 New Features Summary Olivier DASINI MySQL Principal Solutions Architect Blog: http://dasini.net/blog/en/ Twitter: @freshdaz
  • 2. http://dasini.net/blog/en/ Me, Myself & I ➢ MySQL Geek ✔ Addicted to MySQL for 15+ years! ✔ Playing with databases for 20+ years ➢ MySQL Writer, Blogger and Speaker ✔ Also former : DBA, Consultant, Architect, Trainer, ... ➢ MySQL Principal Solutions Architect EMEA at Oracle ➢ Stay tuned! : ✔ Twitter : @freshdaz ✔ Blog : http://dasini.net/blog Olivier DASINI
  • 3. http://dasini.net/blog/en/ The following is just a summary of the MySQL 8.0.19 new features. For a more thorough and exhaustive view please read the following : ➢ The MySQL 8.0.19 Maintenance Release is Generally Available ✔ https://mysqlserverteam.com/the-mysql-8-0-19-maintenance-release-is-generally-available/ ➢ Changes in MySQL 8.0.19 (2020-01-13, General Availability) ✔ https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-19.html ➢ Changes in MySQL Shell 8.0.19 (2020-01-13, General Availability) ✔ https://dev.mysql.com/doc/relnotes/mysql-shell/8.0/en/news-8-0-19.html ➢ Changes in MySQL Router 8.0.19 (2020-01-13, General Availability) ✔ https://dev.mysql.com/doc/relnotes/mysql-router/en/news-8-0-19.html And also the MySQL team Blogs : ➢ https://mysqlserverteam.com/ ➢ https://mysqlhighavailability.com/ ➢ https://mysqlrelease.com/ ➢ http://insidemysql.com/ Disclaimer
  • 4. http://dasini.net/blog/en/ The world's most popular open source database
  • 5. http://dasini.net/blog/en/ Highlights 6 InnoDB ReplicaSet SQL Improvements  Table Value Constructors  LIMIT in recursive CTE  ALTER TABLE… DROP/ALTER CONSTRAINT  More information to Duplicate Key Error Account Management Enhancements Time zone offset for Timestamp & Datetime Information Schema views for SQL Roles MySQL Document Store Enhancements MySQL Shell Enhancements MySQL Router Enhancements MySQL InnoDB Cluster Enhancements MySQL Replication Enhancements MySQL NDB Cluster Enhancements MySQL Enterprise New Features Thanks to the Contributors
  • 7. http://dasini.net/blog/en/ InnoDB ReplicaSet 1/2 ➢ MySQL InnoDB Replicaset provides an easy to use management solution for MySQL Replication ✔ Easy-to-use AdminAPI for MySQL Replication in the MySQL Shell ➢ In just a few easy to use Shell commands, a MySQL Replication database architecture can be configured from scratch ✔ Only 2 command lines to create a MySQL Replication cluster with 2 nodes 8 MySQL mysql_node1:3306 JS> var replicaset = dba.createReplicaSet('demoRS') MySQL mysql_node1:3306 JS> replicaset.addInstance('root@mysql_node2:3306') MySQL mysql_node1:3306 JS> replicaset.status()
  • 8. http://dasini.net/blog/en/ InnoDB ReplicaSet 2/2 9 Resources ➢ The all new MySQL InnoDB ReplicaSet ✔ https://mysqlserverteam.com/introducing-mysql-innodb-replicaset/ ➢ InnoDB ReplicaSet ✔ https://dev.mysql.com/doc/refman/8.0/en/mysql-innodb-replicasets.html
  • 10. http://dasini.net/blog/en/ Table Value Constructors (TVC) 1/2 ➢ Support explicit table clauses and table value constructors according to the SQL standard ➢ Implemented, respectively, as the TABLE statement and the VALUES statement ➢ TABLE table_name is equivalent to SELECT * FROM table_name ➢ VALUES consists of the VALUES keyword followed by a series of row constructors (ROW()), separated by commas 11 TABLE city ORDER BY id LIMIT 2507, 1; +------+----------------+-------------+----------------+------------+ | ID | Name | CountryCode | District | Population | +------+----------------+-------------+----------------+------------+ | 2508 | Fort-de-France | MTQ | Fort-de-France | 94050 | +------+----------------+-------------+----------------+------------+ INSERT INTO t1 VALUES ROW(1,2), ROW(10,20), ROW(100,200); Query OK, 3 rows affected (0,01 sec) Records: 3 Duplicates: 0 Warnings: 0 TABLE t1 LIMIT 1 OFFSET 2; +------+------+ | col1 | col2 | +------+------+ | 100 | 200 | +------+------+
  • 11. http://dasini.net/blog/en/ Table Value Constructors (TVC) 2/2 12 Resources ➢ TABLE Statement ✔ https://dev.mysql.com/doc/refman/8.0/en/table.html ➢ VALUES Statement ✔ https://dev.mysql.com/doc/refman/8.0/en/values.html ➢ WL#10358 - Implement table value constructors: VALUES ✔ https://dev.mysql.com/worklog/task/?id=10358
  • 12. http://dasini.net/blog/en/ LIMIT in recursive CTE ➢ Support for LIMIT in Common Table Expression ✔ The LIMIT is on the total number of rows in the CTE, not on the number of rows that each iteration may produce 13 Resources ➢ A new, simple way to figure out why your recursive CTE is running away ✔ https://mysqlserverteam.com/a-new-simple-way-to-figure-out-why-your-recursive-cte-is-running- away/ ➢ WL#12534 - Support LIMIT in recursive common table expression ✔ https://dev.mysql.com/worklog/task/?id=12534
  • 13. http://dasini.net/blog/en/ ALTER TABLE… DROP/ALTER CONSTRAINT ➢ Support DROP CONSTRAINT & ALTER CONSTRAINT clauses to the ALTER TABLE statement 14 Resources ➢ WL#12798 - Implement ALTER TABLE ... DROP/ALTER CONSTRAINT syntax ✔ https://dev.mysql.com/worklog/task/?id=12798
  • 14. http://dasini.net/blog/en/ More information to Duplicate Key Error ➢ Extend the error information given in cases of duplicate key error to include the table name along with the key name and key value in the error message ➢ This work is based on a contribution from Facebook 15 Resources ➢ WL#12589 - Add more information to Duplicate Key Error ✔ https://dev.mysql.com/worklog/task/?id=12589 ➢ Contribution by Facebook: Add more information to duplicate key error ✔ https://bugs.mysql.com/bug.php?id=92530
  • 16. http://dasini.net/blog/en/ Account Management Enhancements ➢ Configure user accounts such that too many consecutive login failures due to incorrect passwords cause temporary account locking ➢ Required number of failures and the lock time are configurable per account 17 Resources ➢ CREATE USER Password-Management Options ✔ https://dev.mysql.com/doc/refman/8.0/en/create-user.html#create-user-password-management ➢ WL#13515 - Add Oracle style per user FAILED_LOGIN_ATTEMPTS/PASSWORD_LOCK_TIME counters ✔ https://dev.mysql.com/worklog/task/?id=13515 mysql> CREATE USER 'dj'@'localhost' IDENTIFIED BY 'pwd' FAILED_LOGIN_ATTEMPTS 1 PASSWORD_LOCK_TIME 1; $ mysql --user=dj ERROR 3955 (HY000): Access denied for user 'dj'@'localhost'. Account is blocked for 1 day(s) (1 day(s) remaining) due to 1 consecutive failed logins. mysql> ALTER USER 'dj'@'localhost' ACCOUNT UNLOCK;
  • 18. http://dasini.net/blog/en/ Time zone offset for Timestamp & Datetime ➢ Specify a time zone offset when inserting TIMESTAMP and DATETIME values into a table ✔ e.g. 2019-12-11 10:40:30-05:00 | 2003-04-14 03:30:00+10:00 | 2020-01-01 15:35:45+05:30 ➢ Supported range for a timezone offset is -14:00 to +14:00 ➢ Offsets are not displayed when retrieving the values ➢ This is a feature request from Booking.com 19 Resources ➢ The DATE, DATETIME, and TIMESTAMP Types ✔ https://dev.mysql.com/doc/refman/8.0/en/datetime.html ➢ MySQL Server Time Zone Support ✔ https://dev.mysql.com/doc/refman/8.0/en/time-zone-support.html ➢ WL#10828 - TIMESTAMP/DATETIME VALUES CAN INCLUDE TIMEZONE DETAILS ✔ https://dev.mysql.com/worklog/task/?id=10828
  • 20. http://dasini.net/blog/en/ Information Schema views for SQL Roles ➢ INFORMATION_SCHEMA contains several new views that expose role information 21 Resources ➢ Information_Schema Role Tables ✔ https://dev.mysql.com/doc/refman/8.0/en/administrable-role-authorizations-table.html ✔ https://dev.mysql.com/doc/refman/8.0/en/applicable-roles-table.html ✔ https://dev.mysql.com/doc/refman/8.0/en/enabled-roles-table.html ✔ https://dev.mysql.com/doc/refman/8.0/en/role-column-grants-table.html ✔ https://dev.mysql.com/doc/refman/8.0/en/role-routine-grants-table.html ✔ https://dev.mysql.com/doc/refman/8.0/en/role-table-grants-table.html ➢ WL#10895 - INFORMATION_SCHEMA views for Roles ✔ https://dev.mysql.com/worklog/task/?id=10895 mysql> SELECT TABLE_NAME, TABLE_TYPE FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA='information_schema' AND TABLE_NAME LIKE '%ROLE%'; +-----------------------------------+-------------+ | TABLE_NAME | TABLE_TYPE | +-----------------------------------+-------------+ | ADMINISTRABLE_ROLE_AUTHORIZATIONS | SYSTEM VIEW | | APPLICABLE_ROLES | SYSTEM VIEW | | ENABLED_ROLES | SYSTEM VIEW | | ROLE_COLUMN_GRANTS | SYSTEM VIEW | | ROLE_ROUTINE_GRANTS | SYSTEM VIEW | | ROLE_TABLE_GRANTS | SYSTEM VIEW | +-----------------------------------+-------------+
  • 22. http://dasini.net/blog/en/ Document Store Enhancements ➢ Schema validation when create a collection ✔ Implementation of a document schema validator in the X Plugin ✔ Uses the JSON_SCHEMA_VALID(<json_schema>, <json_document>) function ✔ e.g. var coll = schema.createCollection("mycollection", {validator: validationDoc}) 23 Resources ➢ JSON Schema Validation Functions ✔ https://dev.mysql.com/doc/refman/8.0/en/json-validation-functions.html ➢ WL#12965 - X Protocol: add schema validation to create collection ✔ https://dev.mysql.com/worklog/task/?id=12965 ➢ WL#13196 – X Protocol: Collection with json schema validation must return error for concrete row ✔ https://dev.mysql.com/worklog/task/?id=13196 ➢ WL#13195 - Table with json schema validation constraint should return error for concrete row ✔ https://dev.mysql.com/worklog/task/?id=13195 ➢
  • 24. http://dasini.net/blog/en/ MySQL Shell Enhancements ➢ MySQL InnoDB ReplicaSet ✔ MySQL InnoDB Replicaset provides an easy to use management solution for MySQL Replication ➢ Metadata Upgrade and Version Handling ✔ In order to support the new MySQL InnoDB ReplicaSets, the InnoDB Cluster metadata schema was significantly extended ━ Users who have deployed MySQL InnoDB Clusters using previous versions of the Shell will need to perform a Metadata Schema Upgrade in their cluster before they can use MySQL Shell 8.0.19 to manage them ➢ MySQL Router Management Functions ✔ New functions on the Admin API to allow viewing and managing this list of registered MySQL Router instances ➢ Upgrade Checker Extensions ✔ The Upgrade checker tool has been improved for migrations from 5.7 to 8.0 25 Resources ➢ MySQL Shell 8.0.19 – What’s New? ✔ https://mysqlserverteam.com/mysql-shell-8-0-19-whats-new/
  • 26. http://dasini.net/blog/en/ MySQL Router Enhancements ➢ Router now utilizes metadata version 2.0 ➢ Added MySQL InnoDB ReplicaSet Cluster support ✔ Extend the MySQL Router to understand the concept of InnoDB ReplicaSets ━ Loading and caching the topology information from the metadata schema ━ Regularly updating the status information of the setup in order to perform the correct routing operations ➢ New bootstrap option to allow reuse of an existing account ✔ Add a startup option to specify the account the router should use when talking to the server ✔ The router needs a server account to be able to talk to the InnoDB Cluster 27 Resources ➢ Upgrading MySQL InnoDB Cluster Metadata ✔ https://mysqlserverteam.com/upgrading-mysql-innodb-cluster-metadata/ ➢ WL#13417 - Handle the metadata upgrade in the Router ✔ https://dev.mysql.com/worklog/task/?id=13417 ➢ WL#13188 - Add support for InnoDB ReplicaSet in Router ✔ https://dev.mysql.com/worklog/task/?id=13188 ➢ WL#13177 - New bootstrap option (--account) to allow reuse of an existing account ✔ https://dev.mysql.com/worklog/task/?id=13177
  • 28. http://dasini.net/blog/en/ InnoDB Cluster Enhancements 29 ➢ MySQL InnoDB ReplicaSet ✔ The brand new integrated solution using MySQL Replication ➢ New Metadata schema version and deployments upgrade ✔ The Metadata schema version was upgraded to support InnoDB ReplicaSet & to improve its capabilities ➢ Router management - List Routers ✔ Command that allows users to obtain information about the cluster’s/replicaset’s Router instances ➢ Router management - Remove Router from Metadata ✔ Command that allows users to remove a Router instance registry from the Metadata Resources ➢ The all new MySQL InnoDB ReplicaSet ✔ https://mysqlserverteam.com/introducing-mysql-innodb-replicaset/ ➢ MySQL Shell AdminAPI – What’s new in 8.0.19? ✔ https://mysqlserverteam.com/mysql-shell-adminapi-whats-new-in-8-0-19/ ➢ Upgrading MySQL InnoDB Cluster Metadata ✔ https://mysqlserverteam.com/upgrading-mysql-innodb-cluster-metadata/
  • 30. http://dasini.net/blog/en/ Replication Enhancements 1/2 ➢ Configure Replication Applier to Require Row-based Replication only ✔ CHANGE MASTER parameter REQUIRE_ROW_FORMAT allows the user to specify that for a given replication channel, it will only replicate from a server that is logging in ROW mode ━ Avoid common issues associate to statement based replication like the replication of LOAD DATA instructions or replication of temporary tables and related data ➢ Preserve commit order on the replication applier, even if binary log is disabled ✔ Be able to turn on parallel replication on a replica that has no binary log enabled without having different commit histories between the master and the slave ➢ TLSv1.3 configuration support for Replication Channels ✔ The user can now restrict cipher suites on the primary, and then configure the replication channels on the secondaries as well, ensuring that there is a matching TLSv1.3 configuration between the servers 33
  • 31. http://dasini.net/blog/en/ Replication Enhancements 2/2 34 Resources ➢ Restrict MySQL replication to row based events ✔ https://mysqlhighavailability.com/restrict-replication-to-row-based-events/ ➢ WL#12968 - Configure replication applier to require row-based replication ✔ https://dev.mysql.com/worklog/task/?id=12968 ➢ Preserving commit order on replicas with binary log disabled ✔ https://mysqlhighavailability.com/preserve-commit-order-on-binlogless-replicas/ ➢ WL#7846 - MTS: slave-preserve-commit-order when log-slave-updates/binlog is disabled ✔ https://dev.mysql.com/worklog/task/?id=7846 ➢ WL#13392 - Support for TLS 1.3 in Asynchronous Replication ✔ https://dev.mysql.com/worklog/task/?id=13392 ➢ WL#12361 - Support TLS 1.3 in the server and libmysql ✔ https://dev.mysql.com/worklog/task/?id=12361
  • 33. http://dasini.net/blog/en/ NDB Cluster Enhancements 36 ➢ MySQL NDB Cluster 8.0.19 GA is a completely new generation of the world’s highest throughput transactional datastore ➢ Starting with the 8.0 version NDB is developed in, built from, and released with the MySQL 8.0 source code tree ➢ We aim to release all 8.0 releases on the same schedule as MySQL Server and with the respective latest MySQL Server version Resources ➢ NDB Cluster 8.0 is Generally Available ✔ https://mysqlhighavailability.com/ndb-cluster-8-0-is-generally-available/ ➢ What is New in NDB Cluster ✔ https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-what-is-new.html ➢ Automatic Schema Synchronization in NDB Cluster 8.0: Part 1 ✔ https://mysqlhighavailability.com/automatic-schema-synchronization-ndb-cluster-8-0-part-1/ ➢ Automatic Schema Synchronization in NDB Cluster 8.0: Part 2 ✔ https://mysqlhighavailability.com/automatic-schema-synchronization-in-ndb-cluster-8-0-part-2/ ➢ Faster restarts with local and partial checkpoints in MySQL NDB Cluster ✔ https://mysqlhighavailability.com/faster-restarts-with-local-and-partial-checkpoints/
  • 35. http://dasini.net/blog/en/ Enterprise New Features ➢ MySQL Enterprise Backup ✔ Now includes the configuration files auto.cnf and mysqld-auto.cnf from a server in its backup ✔ When fail to connect to a server, the warning returned by mysqlbackup now includes the hostname and port number for TCP connections, and the socket information for socket connections ➢ Binary Log Master Key Rotation ✔ Master key rotation for binary log encryption on the server in between a full and an incremental backup, as well as between 2 incremental backups performed by mysqlbackup, is now supported 38 Resources ➢ MySQL Enterprise Backup User's Guide (Version 8.0.19) ✔ https://dev.mysql.com/doc/mysql-enterprise-backup/8.0/en/ ➢ Binary Log Master Key Rotation ✔ https://dev.mysql.com/doc/refman/8.0/en/replication-binlog-encryption-key-rotation.html
  • 37. http://dasini.net/blog/en/ Thanks to the Contributors Facebook Satya Bodapati Nikolai Kostrigin Oleksandr Peresypkin 40 If you have patches you would like to contribute you can do so from : ➢ MySQL’s GitHub repository : https://github.com/mysql ➢ Requires signing the Oracle Contributor Agreement : https://www.oracle.com/technetwork/community/oca-486395.html
  • 38. http://dasini.net/blog/en/ The complete list of new features in MySQL 8.0 41 There are 250+ new features in MySQL 8.0... https://mysqlserverteam.com/the-complete-list-of-new-features-in-mysql-8-0/