1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

feat(mcs): MCOL-5300 review/finetune log collection tools.

* chore(mcs, scripts): extra/columnstore_review.sh with scripts/columnstore_review.sh with 1.4.13 version
* feat(mcs): add review command to the Tools section. It's the wrapper for columnstore_review.sh
* feat(mcs): add review command implementation to tools.py file + constansts.py
* chore(mcs): add separator argument to cook_sh_arg function
* docs(mcs): updated README.md and mcs.1 man file
This commit is contained in:
mariadb-AlanMologorsky
2025-04-22 20:36:07 +03:00
committed by Alan Mologorsky
parent d245ef33b1
commit 2c0367ea2b
8 changed files with 851 additions and 105 deletions

View File

@ -7,3 +7,6 @@ MCS_CLI_ROOT_PATH = os.path.dirname(__file__)
MCS_CLI_LOG_CONF_PATH = os.path.join(MCS_CLI_ROOT_PATH, 'mcs_cli_log.conf')
MCS_BACKUP_MANAGER_SH = os.path.join(MCS_INSTALL_BIN, 'mcs_backup_manager.sh')
MCS_COLUMNSTORE_REVIEW_SH = os.path.join(
MCS_INSTALL_BIN, 'columnstore_review.sh'
)