You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
45 lines
748 B
Plaintext
45 lines
748 B
Plaintext
#
|
|
# MariaDB ColumnStore Log Rotate file that gets installed in /etc/logrotate.d
|
|
# as part of the package installation
|
|
#
|
|
|
|
@ENGINE_LOGDIR@/*.log {
|
|
missingok
|
|
rotate 7
|
|
daily
|
|
dateext
|
|
copytruncate
|
|
olddir @ENGINE_LOGDIR@/archive
|
|
su root root
|
|
}
|
|
@ENGINE_SYSCONFDIR@/columnstore/Columnstore.xml {
|
|
daily
|
|
dateext
|
|
copy
|
|
olddir @ENGINE_SYSCONFDIR@/columnstore
|
|
}
|
|
@ENGINE_LOGDIR@/data/bulk/job/*.xml {
|
|
missingok
|
|
daily
|
|
rotate 1
|
|
compress
|
|
maxage 30
|
|
nocreate
|
|
}
|
|
@ENGINE_LOGDIR@/data/bulk/log/*.err {
|
|
missingok
|
|
daily
|
|
rotate 1
|
|
compress
|
|
maxage 30
|
|
nocreate
|
|
}
|
|
@ENGINE_LOGDIR@/data/bulk/log/*.log {
|
|
missingok
|
|
daily
|
|
rotate 1
|
|
compress
|
|
maxage 30
|
|
nocreate
|
|
}
|