38 lines
1.6 KiB
Bash
Executable File
38 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
PATH_BIN=/usr/local/sphinx/bin
|
|
PATH_LOG=/dbs/sphinxlog
|
|
|
|
DATE=`date '+%Y-%m-%d %H-%M-%S'`
|
|
|
|
echo "DEBUT de l'indexation ==== $(date +%H:%M:%S)" >> $PATH_LOG/indexerDiri-$(date +%F).log
|
|
|
|
# nombre de lignes dans la table etab
|
|
output=$(mysql -h192.168.3.30 -usphinx -pindexer jo < sql/countDiri.sql)
|
|
for line in "$output"; do
|
|
etab="$line"
|
|
done
|
|
# Suppression fin de ligne
|
|
etab=$(echo $etab|sed -e "s/^[etab ]*//g"||sed -e "s/[ ]*$//g")
|
|
|
|
# nombre de lignes dans la table diri_tmp
|
|
output=$(mysql -h192.168.3.30 -usphinx -pindexer jo < sql/countDiri_tmp.sql)
|
|
for line in "$output"; do
|
|
etab_tmp="$line"
|
|
done
|
|
# Suppression fin de ligne
|
|
etab_tmp=$(echo $etab_tmp|sed -e "s/^[etab_tmp ]*//g"||sed -e "s/[ ]*$//g")
|
|
|
|
# Comparaison du nombre de lignes entre etab (ancien) et etab_tmp (nouveau)
|
|
if test $etab_tmp -gt $etab; then
|
|
echo "Il y a $etab_tmp lignes dans la nouvelle table dirigeants ($etab lignes dans l'ancienne)" >> $PATH_LOG/indexerDiri-$(date +%F).log
|
|
$PATH_BIN/indexer --rotate dir dir_phx >> $PATH_LOG/indexerDiri-$(date +%F).log
|
|
echo "Sphinx - termine : $(date +%H:%M:%S)" >> $PATH_LOG/indexerDiri-$(date +%F).log
|
|
mysql -f -usphinx -h192.168.3.30 -pindexer jo < sql/finIndexationDiri.sql >> $PATH_LOG/indexerDiri-$(date +%F).log
|
|
else
|
|
# Il y a plus de lignes dans l'ancienne table dirigeants ==> On ne fait rien
|
|
echo "Il n'y a pas assez de lignes dans la nouvelle table dirigeants ($etab_tmp / $etab) !" >> $PATH_LOG/indexerDiri-$(date +%F).log
|
|
exit
|
|
fi
|
|
|
|
echo "FIN ===== $(date +%H:%M:%S)" >> $PATH_LOG/indexerDiri-$(date +%F).log
|