Validate the open-files-limit value in mysql

Change-Id: I4a8a483f1a3aa2035d123d8da7309dad8b2a015e
This commit is contained in:
Tomas Sedovic 2016-08-11 12:23:57 +02:00
parent 7456102348
commit dbea52604a
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
---
- hosts: controller
vars:
metadata:
name: MySQL Open Files Limit
description: >
Verify the `open-files-limit` configuration is high enough
https://access.redhat.com/solutions/1598733
groups:
- post-deployment
min_open_files_limit: 16384
tasks:
- name: Get the open_files_limit value
mysql_variables: variable=open_files_limit
register: mysqld_open_files_limit
- name: Test the open-files-limit value
fail:
msg: >
The open_files_limit option for mysql must be higher than
{{ min_open_files_limit }}. Right now it's {{ mysqld_open_files_limit.msg }}.
failed_when: "{{ mysqld_open_files_limit.msg|int }} < {{ min_open_files_limit }}"