FLUSH ATTRIBUTES

  1. FLUSH ATTRIBUTES

Flushes all in-memory attribute updates in all the active disk tables to disk. Returns a tag that identifies the result on-disk state (basically, a number of actual disk attribute saves performed since the server startup).

  1. mysql> UPDATE testindex SET channel_id=1107025 WHERE id=1;
  2. Query OK, 1 row affected (0.04 sec)
  3. mysql> FLUSH ATTRIBUTES;
  4. +------+
  5. | tag |
  6. +------+
  7. | 1 |
  8. +------+
  9. 1 row in set (0.19 sec)

FLUSH HOSTNAMES

  1. FLUSH HOSTNAMES

Renews IPs associates to agent host names. To always query the DNS for getting the host name IP, see hostname_lookup directive.

  1. mysql> FLUSH HOSTNAMES;
  2. Query OK, 5 rows affected (0.01 sec)

▪️ Security