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

Merge pull request #1688 from dhall-MariaDB/MCOL-4319-dev

MCOL-4319 add logrotate for cpimport logs
This commit is contained in:
benthompson15
2020-12-17 09:51:12 -06:00
committed by GitHub
2 changed files with 26 additions and 10 deletions

View File

@ -8,13 +8,37 @@
rotate 7
daily
dateext
copytruncate
copytruncate
olddir /var/log/mariadb/columnstore/archive
su root root
}
@ENGINE_SYSCONFDIR@/columnstore/Columnstore.xml {
daily
dateext
copy
copy
olddir @ENGINE_SYSCONFDIR@/columnstore
}
@ENGINE_DATADIR@/data/bulk/job/*.xml {
missingok
daily
rotate 1
compress
maxage 30
nocreate
}
@ENGINE_DATADIR@/data/bulk/log/*.err {
missingok
daily
rotate 1
compress
maxage 30
nocreate
}
@ENGINE_DATADIR@/data/bulk/log/*.log {
missingok
daily
rotate 1
compress
maxage 30
nocreate
}

View File

@ -1,8 +0,0 @@
#ifndef VERSIONNUMBER_H_
#define VERSIONNUMBER_H_
#include <string>
const std::string idb_version("4.6");
const std::string idb_release("0");
#endif