47 lines
797 B
Bash
47 lines
797 B
Bash
#!/bin/bash
|
|
|
|
DESC="Optimize sur les tables d'Hydra"
|
|
|
|
. /usr/share/eole/schedule/config.sh
|
|
|
|
echo "Begin date: $(date)"
|
|
|
|
day=$(date '+%u') # 1 == Monday
|
|
|
|
case $day in
|
|
1)
|
|
tables='hydra_oauth2_access'
|
|
;;
|
|
2)
|
|
tables='hydra_oauth2_oidc'
|
|
;;
|
|
3)
|
|
tables='hydra_oauth2_code'
|
|
;;
|
|
4)
|
|
tables='hydra_oauth2_authentication_request'
|
|
;;
|
|
5)
|
|
tables='hydra_oauth2_consent_request'
|
|
;;
|
|
6)
|
|
tables='hydra_oauth2_logout_request, hydra_oauth2_consent_request_handled'
|
|
;;
|
|
7)
|
|
tables='hydra_oauth2_authentication_session, hydra_oauth2_authentication_request_handled, hydra_oauth2_pkce'
|
|
;;
|
|
*)
|
|
echo "Unexpected error. Day: $day"
|
|
exit 1
|
|
esac
|
|
|
|
mysql --defaults-file=/etc/mysql/debian.cnf hydra <<EOF
|
|
OPTIMIZE TABLE $tables;
|
|
EOF
|
|
|
|
exit_val=$?
|
|
|
|
echo "End date: $(date)"
|
|
|
|
exit $exit_val
|