-
Notifications
You must be signed in to change notification settings - Fork 484
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release notes for 5.7.23-23 (57) #2523
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
ca53beb
Release notes for 5.7.23-23 (57)
7b857cd
Release notes for 5.7.23-23 (57)
0e97509
Release notes for 5.7.23-23 (57)
84106fa
added binlog_space_limit description
fiowro ab3da4c
variable formating fix
fiowro 9d507c5
Update Percona-Server-5.7.23-23.rst
fiowro e2358f3
fixed wording, mentioned removed vars
fiowro e4fcd77
Update psdom.py
fiowro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
.. rn:: 5.7.23-23 | ||
|
||
======================== | ||
Percona Server |release| | ||
======================== | ||
|
||
Percona is glad to announce the release of Percona Server |release| on | ||
September 12, 2018. Downloads are available `here | ||
<http://www.percona.com/downloads/Percona-Server-5.7/Percona-Server-5.7.23-23/>`_ | ||
and from the :doc:`Percona Software Repositories </installation>`. | ||
|
||
This release is based on `MySQL 5.7.23 | ||
<http://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-23.html>`_ | ||
and includes all the bug fixes in it. |Percona Server| |release| is | ||
now the current GA (Generally Available) release in the 5.7 series. | ||
|
||
All software developed by Percona is open-source and free. | ||
|
||
New Features | ||
============ | ||
|
||
* The :variable:`max_binlog_files` variable is deprecated and replaced with | ||
the :variable:`binlog_space_limit` variable. The behavior of | ||
:variable:`binlog_space_limit` is consistent with the variable | ||
:variable:`relay-log-space-limit` used for relay logs; both variables have the | ||
same semantics. For more information, see :psbug:`275`. | ||
* Starting with |release|, it is possible to encrypt all data in the InnoDB | ||
system tablespace and in the parallel double write buffer. A new variable | ||
:variable:`innodb_sys_tablespace_encrypt` is introduced to encrypt the system | ||
tablespace. This feature is considered **ALPHA** quality. The encryption of | ||
the parallel double write buffer file is controlled by the variable | ||
:variable:`innodb_parallel_dblwr_encrypt`. Both variables are ``OFF`` by | ||
default. For more information, see :psbug:`3822`. | ||
* Changing ``rocksdb_update_cf_options`` returns any warnings and errors to the | ||
client instead of printing them to the server error log. For more information, | ||
see :psbug:`4258`. | ||
* :variable:`rocksdb_number_stat_computers` and | ||
:variable:`rocksdb_rate_limit_delay_millis` variables have been removed. For | ||
more information, see :psbug:`4780`. | ||
* A number of new variables were introduced for |MyRocks|: | ||
:variable:`rocksdb_rows_filtered` to show the number of rows filtered out for | ||
TTL in MyRocks tables, :variable:`rocksdb_bulk_load_allow_sk` to allow adding | ||
secondary keys using the bulk loading feature, | ||
:variable:`rocksdb_error_on_suboptimal_collation` toggling warning or error | ||
in case of an index creation on a char field where the table has a sub-optimal | ||
collation, :variable:`rocksdb_stats_recalc_rate` specifying the number of | ||
indexes to recalculate per second, | ||
:variable:`rocksdb_commit_time_batch_for_recovery` toggler of writing the | ||
commit time write batch into the database, | ||
and :variable:`rocksdb_write_policy` specifying when two-phase commit data are | ||
actually written into the database. | ||
|
||
Bugs Fixed | ||
========== | ||
|
||
* The statement ``SELECT...ORDER BY`` produced inconsistent results with the | ||
``euckr`` charset or ``euckr_bin`` collation. Bug fixed :psbug:`4513` | ||
(upstream :mysqlbug:`91091`). | ||
* InnoDB statistics could incorrectly report zeros in the :ref:`slow query log | ||
<slow_extended>`. Bug fixed :psbug:`3828`. | ||
* With the FIPS mode enabled and performance_schema=off, the instance crashed | ||
when running the ``CREATE VIEW`` command. Bug fixed :psbug:`3840`. | ||
* The soft limit of the core file size was set incorrectly starting with PS | ||
:rn:`5.7.21-20`. Bug fixed :psbug:`4479`. | ||
* The option ``innodb-optimize-keys`` could fail when a dumped table has two | ||
columns such that the name of one of them contains the other as as a prefix and | ||
is defined with the AUTO_INCREMENT attribute. Bug fixed :psbug:`4524`. | ||
* When :variable:`innodb_temp_tablespace_encrypt` was set to ``ON`` the ``CREATE TABLE`` | ||
command could ignore the value of the ``ENCRYPTION`` option. Bug fixed | ||
:psbug:`4565`. | ||
* If ``FLUSH STATUS`` was run from a different session, a statement could be | ||
counted twice in ``GLOBAL STATUS``. Bug fixed :psbug:`4570` (upstream | ||
:mysqlbug:`91541`). | ||
* In some cases, it was not possible to set the :variable:`flush_caches` | ||
variable on systems that use systemd. Bug fixed :psbug:`3796`. | ||
* A message in the |MyRocks| log file did not clearly inform whether fast CRC32 | ||
was supported. Bug fixed :psbug:`3988`. | ||
* ``mysqld`` could not be started on Ubuntu if the database recovery had taken | ||
longer than ten minutes. Bug fixed :psbug:`4546` (upstream :mysqlbug:`91423`). | ||
* The ALTER TABLE command was slow when the number of dirty pages was high. Bug fixed | ||
:psbug:`3702`. | ||
* Setting the global variable :variable:`version_suffix` to NULL could | ||
lead to a server crash. Bug fixed :psbug:`4785`. | ||
|
||
Other Bugs Fixed | ||
================ | ||
|
||
* :psbug:`4620` \"Enable encryption of temporary tablespace from foreground thread\" | ||
* :psbug:`4727` \"intrinsic temp table behaviour shouldn\'t depend on innodb_encrypt_tables\" | ||
* :psbug:`4046` \"Ship assert failure: \'res == 0\' (bulk loader)\" | ||
* :psbug:`3851` \"Percona Ver 5.6.39-83.1 Failing assertion: sym_node->table != NULL\" | ||
* :psbug:`4533` \"audit_log MTR tests should refer to include files without parent directories\" | ||
* :psbug:`4619` \"main.flush_read_lock fails with timeout in wait_condition.inc.\" | ||
* :psbug:`4561` \"Read after free at Binlog_crypt_data::load_latest_binlog_key()\" | ||
* :psbug:`4587` \"ROCKSDB_INCLUDE_RFR macro in wrong file\" | ||
|
||
.. |release| replace:: 5.7.23-23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why escape the quotes? What's the difference in the output?