From 0474f0b4dd6fcde6a515eaf77ec37156df29240e Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Fri, 6 Dec 2019 13:53:04 +0300 Subject: [PATCH] mysql_info: add note to the module's documentation (#65603) --- lib/ansible/modules/database/mysql/mysql_info.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/ansible/modules/database/mysql/mysql_info.py b/lib/ansible/modules/database/mysql/mysql_info.py index b2a15b9c60a..95a0326a992 100644 --- a/lib/ansible/modules/database/mysql/mysql_info.py +++ b/lib/ansible/modules/database/mysql/mysql_info.py @@ -46,6 +46,10 @@ options: elements: str version_added: '2.10' +notes: +- Calculating the size of a database might be slow, depending on the number and size of tables in it. + To avoid this, use I(exclude_fields=db_size). + author: - Andrew Klychkov (@Andersson007)