mirror of
https://github.com/pi-hole/pi-hole
synced 2025-01-03 12:40:56 +00:00
Optimize the database by running ANALYZE after gravity finished
Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
parent
0cf0b2ab76
commit
73301da68f
21
gravity.sh
21
gravity.sh
@ -837,6 +837,24 @@ database_recovery() {
|
|||||||
echo ""
|
echo ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gravity_optimize() {
|
||||||
|
# The ANALYZE command gathers statistics about tables and indices and stores
|
||||||
|
# the collected information in internal tables of the database where the
|
||||||
|
# query optimizer can access the information and use it to help make better
|
||||||
|
# query planning choices
|
||||||
|
local str="Optimizing database"
|
||||||
|
echo -ne " ${INFO} ${str}..."
|
||||||
|
output=$( { pihole-FTL sqlite3 -ni "${gravityTEMPfile}" "PRAGMA analysis_limit=0; ANALYZE" 2>&1; } 2>&1 )
|
||||||
|
status="$?"
|
||||||
|
|
||||||
|
if [[ "${status}" -ne 0 ]]; then
|
||||||
|
echo -e "\\n ${CROSS} Unable to optimize database ${gravityTEMPfile}\\n ${output}"
|
||||||
|
gravity_Cleanup "error"
|
||||||
|
else
|
||||||
|
echo -e "${OVER} ${TICK} ${str}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
helpFunc() {
|
helpFunc() {
|
||||||
echo "Usage: pihole -g
|
echo "Usage: pihole -g
|
||||||
Update domains from blocklists specified in adlists.list
|
Update domains from blocklists specified in adlists.list
|
||||||
@ -949,6 +967,9 @@ gravity_build_tree
|
|||||||
# numbers quickly from the tree instead of having to scan the whole database)
|
# numbers quickly from the tree instead of having to scan the whole database)
|
||||||
gravity_ShowCount
|
gravity_ShowCount
|
||||||
|
|
||||||
|
# Optimize the database
|
||||||
|
gravity_optimize
|
||||||
|
|
||||||
# Migrate rest of the data from old to new database
|
# Migrate rest of the data from old to new database
|
||||||
# IMPORTANT: Swapping the databases must be the last step before the cleanup
|
# IMPORTANT: Swapping the databases must be the last step before the cleanup
|
||||||
if ! gravity_swap_databases; then
|
if ! gravity_swap_databases; then
|
||||||
|
Loading…
Reference in New Issue
Block a user