Announcing MariaDB Community Server 10.11 GA
We are pleased to announce the general availability (GA) of MariaDB Community Server 10.11.
Big highlights of the MariaDB Community Server 10.11 release include optimizations to information schema system tables, the new GRANT TO PUBLIC, changes to privileges to allow real read only replicas and enhancements for analyzing the time spent in the query optimizer. We also enhanced our system versioned table feature – a flagship feature to store, access and audit past data – so it can now not only create a logical dump with all history data, it can also restore the history data together with the currently valid data from a dump file.
More detail about these features can be found below:
FOR DEVELOPERS
- Optimizations to information schema system tables
- The information schema provides tables with metadata about stored procedures and stored routines, which are often used by third party tools and MariaDB Connectors to retrieve details about existing routines. Previously, a high number of rows in these tables would have resulted in a performance impact. We have made a number of internal improvements to eliminate the performance impact completely for use cases, where metadata had to be queried regularly
FOR DEVOPS AND DBAS
- The new SQL syntax
GRANT .. TO PUBLICcan now be used to easily grant privileges to databases or tables for any user, who has access to the server.SHOW GRANTS FOR PUBLICis an enhancement to the existingSHOW GRANTSsyntax to retrieve all privileges granted to public
SUPERandREAD ONLY ADMINprivileges are now separated- The
READ ONLY ADMINprivileges now needs to be granted to a user with theSUPERprivilege explicitly, if this user should have write access to a read only replica (a replica havingread_only=1set). - Read-only replicas are used to ensure that they stay consistent with the primary. This can now be ensured also if
SUPERusers try to update data on the replica
- The
- System versioned tables can now be dumped and restored by mariadb-dump
- The new parameter mariadb-dump parameter
--dump-historydumps all historical data - To restore from a dump file the new parameter
system_versioning_insert_historyneeds to be enabled to allow direct inserts intoROW_STARTandROW_ENDcolumns - The existing parameter
secure_timestampneeds to be set to a value which allows changing session timestamps
- The new parameter mariadb-dump parameter
ANALYZE FORMAT=JSONnow shows the time spent in the query optimizer- In some cases optimizing the query can take a while.
ANALYZE FORMAT=JSONnow reports time as"query_optimization": {Â "r_total_time_ms": NNNN.NNN }in the JSON string
- In some cases optimizing the query can take a while.
- The system variables
innodb_write_io_threadsandinnodb_read_io_threadsare now dynamic, and their values can be changed without restarting the server
Download the latest release of MariaDB Community Server now. To experience MariaDB database products in the cloud, try MariaDB SkySQL, a multi-cloud database service.