mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
[WIP] Add tables count per database
This commit is contained in:
parent
7d787eb238
commit
9cf17827d2
3 changed files with 102 additions and 9 deletions
|
@ -35,7 +35,7 @@ options:
|
||||||
exclude_fields:
|
exclude_fields:
|
||||||
description:
|
description:
|
||||||
- List of fields which are not needed to collect.
|
- List of fields which are not needed to collect.
|
||||||
- "Supports elements: C(db_size). Unsupported elements will be ignored."
|
- "Supports elements: C(db_size), C(db_table_count). Unsupported elements will be ignored."
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
version_added: '0.1.0'
|
version_added: '0.1.0'
|
||||||
|
@ -656,15 +656,20 @@ class MySQL_Info(object):
|
||||||
|
|
||||||
def __get_databases(self, exclude_fields, return_empty_dbs):
|
def __get_databases(self, exclude_fields, return_empty_dbs):
|
||||||
"""Get info about databases."""
|
"""Get info about databases."""
|
||||||
if not exclude_fields:
|
|
||||||
query = ('SELECT table_schema AS "name", '
|
|
||||||
'SUM(data_length + index_length) AS "size" '
|
|
||||||
'FROM information_schema.TABLES GROUP BY table_schema')
|
|
||||||
else:
|
|
||||||
if 'db_size' in exclude_fields:
|
|
||||||
query = ('SELECT table_schema AS "name" '
|
|
||||||
'FROM information_schema.TABLES GROUP BY table_schema')
|
|
||||||
|
|
||||||
|
cmd_start = 'SELECT table_schema AS "name"'
|
||||||
|
cmd_db_size = 'SUM(data_length + index_length) AS "size"'
|
||||||
|
cmd_db_table_count = 'COUNT(table_name) as "tables"'
|
||||||
|
cmd_end = ' FROM information_schema.TABLES GROUP BY table_schema'
|
||||||
|
cmd_start_and_fields = [cmd_start, cmd_db_size, cmd_db_table_count]
|
||||||
|
|
||||||
|
if exclude_fields and 'db_size' in exclude_fields:
|
||||||
|
cmd_start_and_fields.remove(cmd_db_size)
|
||||||
|
|
||||||
|
if exclude_fields and 'db_table_count' in exclude_fields:
|
||||||
|
cmd_start_and_fields.remove(cmd_db_table_count)
|
||||||
|
|
||||||
|
query = ', '.join(cmd_start_and_fields) + cmd_end
|
||||||
res = self.__exec_sql(query)
|
res = self.__exec_sql(query)
|
||||||
|
|
||||||
if res:
|
if res:
|
||||||
|
@ -677,6 +682,12 @@ class MySQL_Info(object):
|
||||||
|
|
||||||
self.info['databases'][db['name']]['size'] = int(db['size'])
|
self.info['databases'][db['name']]['size'] = int(db['size'])
|
||||||
|
|
||||||
|
if not exclude_fields or 'db_table_count' not in exclude_fields:
|
||||||
|
if db['tables'] is None:
|
||||||
|
db['tables'] = 0
|
||||||
|
|
||||||
|
self.info['databases'][db['name']]['tables'] = int(db['tables'])
|
||||||
|
|
||||||
# If empty dbs are not needed in the returned dict, exit from the method
|
# If empty dbs are not needed in the returned dict, exit from the method
|
||||||
if not return_empty_dbs:
|
if not return_empty_dbs:
|
||||||
return None
|
return None
|
||||||
|
@ -691,6 +702,9 @@ class MySQL_Info(object):
|
||||||
if not exclude_fields or 'db_size' not in exclude_fields:
|
if not exclude_fields or 'db_size' not in exclude_fields:
|
||||||
self.info['databases'][db['Database']]['size'] = 0
|
self.info['databases'][db['Database']]['size'] = 0
|
||||||
|
|
||||||
|
if not exclude_fields or 'db_table_count' not in exclude_fields:
|
||||||
|
self.info['databases'][db['Database']]['tables'] = 0
|
||||||
|
|
||||||
def __exec_sql(self, query, ddl=False):
|
def __exec_sql(self, query, ddl=False):
|
||||||
"""Execute SQL.
|
"""Execute SQL.
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,75 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
- module_defaults:
|
||||||
|
community.mysql.mysql_db: &mysql_defaults
|
||||||
|
login_user: "{{ mysql_user }}"
|
||||||
|
login_password: "{{ mysql_password }}"
|
||||||
|
login_host: "{{ mysql_host }}"
|
||||||
|
login_port: "{{ mysql_primary_port }}"
|
||||||
|
community.mysql.mysql_query: *mysql_defaults
|
||||||
|
community.mysql.mysql_info: *mysql_defaults
|
||||||
|
community.mysql.mysql_user: *mysql_defaults
|
||||||
|
|
||||||
|
block:
|
||||||
|
|
||||||
|
# ================================ Prepare ==============================
|
||||||
|
- name: Mysql_info users_info | Create databases
|
||||||
|
community.mysql.mysql_db:
|
||||||
|
name:
|
||||||
|
- db_tables_count_empty
|
||||||
|
- db_tables_count_1
|
||||||
|
- db_tables_count_2
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: Mysql_info users_info | Create tables
|
||||||
|
community.mysql.mysql_query:
|
||||||
|
query:
|
||||||
|
- >-
|
||||||
|
CREATE TABLE IF NOT EXISTS db_tables_count_1.t1
|
||||||
|
(id int, name varchar(9))
|
||||||
|
- >-
|
||||||
|
CREATE TABLE IF NOT EXISTS db_tables_count_2.t1
|
||||||
|
(id int, name1 varchar(9))
|
||||||
|
- >-
|
||||||
|
CREATE TABLE IF NOT EXISTS db_tables_count_2.t2
|
||||||
|
(id int, name1 varchar(9))
|
||||||
|
|
||||||
|
# ================================== Tests ==============================
|
||||||
|
|
||||||
|
- name: Mysql_info users_info | Collect all databases fields
|
||||||
|
community.mysql.mysql_info:
|
||||||
|
filter:
|
||||||
|
- databases
|
||||||
|
register: result
|
||||||
|
# failed_when:
|
||||||
|
# - TODO
|
||||||
|
|
||||||
|
- name: Mysql_info users_info | Collect all databases fields except db_size
|
||||||
|
community.mysql.mysql_info:
|
||||||
|
filter:
|
||||||
|
- databases
|
||||||
|
exclude_fileds:
|
||||||
|
- db_size
|
||||||
|
register: result
|
||||||
|
# failed_when:
|
||||||
|
# - TODO
|
||||||
|
|
||||||
|
- name: Mysql_info users_info | Collect all databases fields except db_table_count
|
||||||
|
community.mysql.mysql_info:
|
||||||
|
filter:
|
||||||
|
- databases
|
||||||
|
exclude_fileds:
|
||||||
|
- db_table_count
|
||||||
|
register: result
|
||||||
|
# failed_when:
|
||||||
|
# - TODO
|
||||||
|
|
||||||
|
# ================================== Cleanup ============================
|
||||||
|
|
||||||
|
- name: Mysql_info users_info | Cleanup databases
|
||||||
|
community.mysql.mysql_db:
|
||||||
|
name:
|
||||||
|
- db_tables_count_empty
|
||||||
|
- db_tables_count_1
|
||||||
|
- db_tables_count_2
|
||||||
|
state: present
|
|
@ -221,6 +221,10 @@
|
||||||
that:
|
that:
|
||||||
- result.databases.allviews.size == 0
|
- result.databases.allviews.size == 0
|
||||||
|
|
||||||
|
- name: Import tasks file to tests tables count in database filter
|
||||||
|
ansible.builtin.import_tasks:
|
||||||
|
file: filter_databases_tables.yml
|
||||||
|
|
||||||
- name: Import tasks file to tests users_info filter
|
- name: Import tasks file to tests users_info filter
|
||||||
ansible.builtin.import_tasks:
|
ansible.builtin.import_tasks:
|
||||||
file: filter_users_info.yml
|
file: filter_users_info.yml
|
||||||
|
|
Loading…
Add table
Reference in a new issue