There seems to be a change in growth rate of data stored in /var/lib/mysql on an-coord1001 since Apr 14th at around 20 UTC (more or less):
The majority of the size seems to be due to the hive_metastore database:
elukey@an-coord1001:/var/lib/mysql$ sudo du -hs * | sort -h | tail 1.1G analytics-meta-bin.017978 1.1G analytics-meta-bin.017979 1.1G analytics-meta-bin.017980 1.1G analytics-meta-bin.017981 1.1G analytics-meta-bin.017982 1.1G analytics-meta-bin.017983 1.1G analytics-meta-bin.017984 4.1G druid 5.9G oozie 6.6G hive_metastore
MariaDB [(none)]> SELECT table_schema AS `Database`, table_name AS `Table`, round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB` FROM information_schema.TABLES ORDER BY (data_length + index_length) DESC LIMIT 10; +----------------+--------------------+------------+ | Database | Table | Size in MB | +----------------+--------------------+------------+ | hive_metastore | SDS | 2103.20 | | druid | druid_tasks | 1817.69 | | oozie | WF_JOBS | 1806.61 | | hive_metastore | PARTITION_KEY_VALS | 1386.91 | | oozie | WF_ACTIONS | 1162.08 | | hive_metastore | PARTITIONS | 1019.45 | | hive_metastore | PARTITION_PARAMS | 839.81 | | oozie | COORD_ACTIONS | 776.83 | | druid | druid_tasklogs | 751.72 | | hive_metastore | SERDES | 583.47 | +----------------+--------------------+------------+