You've already forked mariadb-columnstore-engine
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:
@ -8,13 +8,37 @@
|
|||||||
rotate 7
|
rotate 7
|
||||||
daily
|
daily
|
||||||
dateext
|
dateext
|
||||||
copytruncate
|
copytruncate
|
||||||
olddir /var/log/mariadb/columnstore/archive
|
olddir /var/log/mariadb/columnstore/archive
|
||||||
su root root
|
su root root
|
||||||
}
|
}
|
||||||
@ENGINE_SYSCONFDIR@/columnstore/Columnstore.xml {
|
@ENGINE_SYSCONFDIR@/columnstore/Columnstore.xml {
|
||||||
daily
|
daily
|
||||||
dateext
|
dateext
|
||||||
copy
|
copy
|
||||||
olddir @ENGINE_SYSCONFDIR@/columnstore
|
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
|
||||||
|
}
|
||||||
|
@ -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
|
|
||||||
|
|
Reference in New Issue
Block a user