Skip to content
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

Bug 1617828: audit_log_filter_db failures #931

Merged
merged 1 commit into from
Aug 29, 2016

Conversation

gl-sergei
Copy link
Contributor

The fix increases timeout for event shot wait to 10 minutes and adds
silent query at the end of the event.

http://jenkins.percona.com/view/5.7/job/mysql-5.7-param/371/#showFailuresLink

The fix increases timeout for event shot wait to 10 minutes and adds
silent query at the end of the event.
@laurynas-biveinis
Copy link
Contributor

LGTM

@gl-sergei gl-sergei merged commit fe121d0 into percona:5.7 Aug 29, 2016
@gl-sergei gl-sergei deleted the 5.7-ps-bug1617828 branch November 24, 2016 02:06
satya-bodapati added a commit to satya-bodapati/percona-server that referenced this pull request Feb 22, 2019
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Reviewed By: lth

Differential Revision: D13789095

Pulled By: lth

fbshipit-source-id: d572c7b8896
inikep pushed a commit to inikep/percona-server that referenced this pull request Apr 23, 2020
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Test Plan:
jenkins

Testing command:
  mysqld --datadir=/tmp/log_init --skip-grant-tables --skip-networking --socket=socket --innodb-log-file-size=1G --innodb-txlog-init-rate=[rate]

With --innodb-txlog-init-rate=0 (no throttling, 1GB init finished in ~49s)

  2015-05-22 16:51:20 4018018 [Note] InnoDB: Setting log file ./ib_logfile101 size to 1024 MB
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000
  2015-05-22 16:52:09 4018018 [Note] InnoDB: Setting log file ./ib_logfile1 size to 1024 MB
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000

With --innodb-txlog-init-rate=10485760 (10MB/s throttling, 1GB log init finished in ~103s)

  2015-05-22 16:55:28 4022136 [Note] InnoDB: Setting log file ./ib_logfile101 size to 1024 MB
  InnoDB: log file write is throttled at 10MB/s
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000
  2015-05-22 16:57:11 4022136 [Note] InnoDB: Setting log file ./ib_logfile1 size to 1024 MB
  InnoDB: log file write is throttled at 10MB/s
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000

Without setting the option (use default. 1GB init finished in ~50s. Note the write is already below 128MB/s, so the throttling didn't have any effect)

  2015-05-22 17:18:51 4055898 [Note] InnoDB: Setting log file ./ib_logfile101 size to 1024 MB
  InnoDB: log file write is throttled at 128MB/s
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000
  2015-05-22 17:19:41 4055898 [Note] InnoDB: Setting log file ./ib_logfile1 size to 1024 MB
  InnoDB: log file write is throttled at 128MB/s
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000

Reviewed By: lth

Differential Revision: D13789095

Pulled By: lth

fbshipit-source-id: 8c94859a695
inikep pushed a commit to inikep/percona-server that referenced this pull request Feb 24, 2021
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Test Plan:
jenkins

Testing command:
  mysqld --datadir=/tmp/log_init --skip-grant-tables --skip-networking --socket=socket --innodb-log-file-size=1G --innodb-txlog-init-rate=[rate]

With --innodb-txlog-init-rate=0 (no throttling, 1GB init finished in ~49s)

  2015-05-22 16:51:20 4018018 [Note] InnoDB: Setting log file ./ib_logfile101 size to 1024 MB
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000
  2015-05-22 16:52:09 4018018 [Note] InnoDB: Setting log file ./ib_logfile1 size to 1024 MB
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000

With --innodb-txlog-init-rate=10485760 (10MB/s throttling, 1GB log init finished in ~103s)

  2015-05-22 16:55:28 4022136 [Note] InnoDB: Setting log file ./ib_logfile101 size to 1024 MB
  InnoDB: log file write is throttled at 10MB/s
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000
  2015-05-22 16:57:11 4022136 [Note] InnoDB: Setting log file ./ib_logfile1 size to 1024 MB
  InnoDB: log file write is throttled at 10MB/s
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000

Without setting the option (use default. 1GB init finished in ~50s. Note the write is already below 128MB/s, so the throttling didn't have any effect)

  2015-05-22 17:18:51 4055898 [Note] InnoDB: Setting log file ./ib_logfile101 size to 1024 MB
  InnoDB: log file write is throttled at 128MB/s
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000
  2015-05-22 17:19:41 4055898 [Note] InnoDB: Setting log file ./ib_logfile1 size to 1024 MB
  InnoDB: log file write is throttled at 128MB/s
  InnoDB: Progress in MB: 100 200 300 400 500 600 700 800 900 1000

Reviewed By: lth

Differential Revision: D13789095

Pulled By: lth

fbshipit-source-id: 8c94859a695
inikep pushed a commit to inikep/percona-server that referenced this pull request Nov 15, 2021
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Reviewed By: lloyd

Differential Revision: D13789095 (facebook/mysql-5.6@48615c4)

Pulled By: lth

fbshipit-source-id: d667be91978
ldonoso pushed a commit to ldonoso/percona-server that referenced this pull request Mar 15, 2022
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Reviewed By: lloyd

Differential Revision: D13789095

Pulled By: lth
ldonoso pushed a commit to ldonoso/percona-server that referenced this pull request Mar 15, 2022
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Reviewed By: lloyd

Differential Revision: D13789095

Pulled By: lth
ldonoso pushed a commit to ldonoso/percona-server that referenced this pull request Mar 18, 2022
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Reviewed By: lloyd

Differential Revision: D13789095

Pulled By: lth
ldonoso pushed a commit to ldonoso/percona-server that referenced this pull request Apr 12, 2022
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Reviewed By: lloyd

Differential Revision: D13789095

Pulled By: lth
inikep pushed a commit to inikep/percona-server that referenced this pull request Apr 15, 2024
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Reviewed By: lloyd

Differential Revision: D13789095

Pulled By: lth
inikep pushed a commit to inikep/percona-server that referenced this pull request Apr 16, 2024
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Reviewed By: lloyd

Differential Revision: D13789095

Pulled By: lth
inikep pushed a commit to inikep/percona-server that referenced this pull request Apr 17, 2024
Summary:
JIRA: https://jira.percona.com/browse/FB8-52

Reference Patch: facebook/mysql-5.6@80ca845
Reference Patch: facebook/mysql-5.6@0fb428b

Patch introduces new variable 'innodb_txlog_init_rate' to limit
the IO rate of InnoDB redo log file initialization.
Pull Request resolved: facebook/mysql-5.6#931

Reviewed By: lloyd

Differential Revision: D13789095

Pulled By: lth
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants