Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 1485017 Details for
Bug 1631154
[RFE] Add additional tuning options for mariadb/galera
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
proposed patch vs current master
mysql.pp.patch (text/plain), 1.89 KB, created by
Luca Miccini
on 2018-09-20 06:32:49 UTC
(
hide
)
Description:
proposed patch vs current master
Filename:
MIME Type:
Creator:
Luca Miccini
Created:
2018-09-20 06:32:49 UTC
Size:
1.89 KB
patch
obsolete
>@@ -56,6 +56,19 @@ > # (Optional) Configure the size of the MySQL buffer pool. > # Defaults to hiera('innodb_buffer_pool_size', undef) > # >+# [*innodb_log_file_size*] >+# (Optional) Configure the size in bytes of each log file in a log group. >+# Defaults to hiera('innodb_log_file_size', undef) >+# >+# [*innodb_flush_method*] >+# (Optional) Defines the method used to flush data to InnoDB data files and log files. >+# Defaults to hiera('innodb_flush_method', undef) >+# >+# [*table_open_cache*] >+# (Optional) Configure the number of open tables for all threads. >+# Increasing this value increases the number of file descriptors that mysqld requires. >+# Defaults to hiera('table_open_cache', undef) >+# > # [*manage_resources*] > # (Optional) Whether or not manage root user, root my.cnf, and service. > # Defaults to true >@@ -87,6 +100,9 @@ > $enable_internal_tls = hiera('enable_internal_tls', false), > $generate_dropin_file_limit = false, > $innodb_buffer_pool_size = hiera('innodb_buffer_pool_size', undef), >+ $innodb_log_file_size = hiera('innodb_log_file_size', undef), >+ $table_open_cache = hiera('table_open_cache', undef), >+ $innodb_flush_method = hiera('innodb_flush_method', undef), > $manage_resources = true, > $mysql_server_options = {}, > $mysql_max_connections = hiera('mysql_max_connections', undef), >@@ -141,6 +157,9 @@ > 'open_files_limit' => '-1', > 'innodb_buffer_pool_size' => $innodb_buffer_pool_size, > 'innodb_file_per_table' => 'ON', >+ 'innodb_log_file_size' => $innodb_log_file_size, >+ 'table_open_cache' => $table_open_cache, >+ 'innodb_flush_method' => $innodb_flush_method, > 'ssl' => $enable_internal_tls, > 'ssl-key' => $tls_keyfile, > 'ssl-cert' => $tls_certfile,
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1631154
:
1485017