[MDEV-25286] Docu: aria status in docu does not reflect reality Created: 2021-03-29 Updated: 2021-04-29 |
|
| Status: | Open |
| Project: | MariaDB Server |
| Component/s: | Documentation |
| Affects Version/s: | 10.5.9 |
| Fix Version/s: | N/A |
| Type: | Bug | Priority: | Major |
| Reporter: | Oli Sennhauser | Assignee: | Ian Gilfillan |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Environment: |
n.a. |
||
| Description |
|
1. Docu here: https://mariadb.com/kb/en/aria-status-variables/
2. Docu here: https://mariadb.com/kb/en/aria-status-variables/ states that this 3 status variables: Aria_pagecache_blocks_not_flushed can be reset with flush status. This does IMHO technically not make sense (at least for not_flushed and unused, possibly it does make sense for the high water mark used) but experiments show that flush status does not reset the values: root@mariadb-105 [test] SQL> show global status like 'aria%';
----------------------------------
---------------------------------- root@mariadb-105 [test] SQL> flush status; root@mariadb-105 [test] SQL> show global status like 'aria%';
----------------------------------
---------------------------------- root@mariadb-105 [test] SQL> flush tables; root@mariadb-105 [test] SQL> flush status; root@mariadb-105 [test] SQL> show global status like 'aria%';
----------------------------------
---------------------------------- This should be fixed or at least clarified... |