mirror of
https://github.com/ChuckPa/PlexDBRepair.git
synced 2025-11-06 03:08:55 -05:00
Merge pull request #208 from ChuckPa/chuckpa/plex-bloat
Provide temporary DB bloat deflate capability for huge databases. Documentation in the Release Notes
This commit is contained in:
commit
b431e49455
131
DBRepair.sh
131
DBRepair.sh
@ -1,13 +1,13 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#########################################################################
|
#########################################################################
|
||||||
# Database Repair Utility for Plex Media Server. #
|
# Database Repair Utility for Plex Media Server. #
|
||||||
# Maintainer: ChuckPa #
|
# Maintainer: ChuckPa #
|
||||||
# Version: v1.11.00 #
|
# Version: v1.11.02 #
|
||||||
# Date: 23-May-2025 #
|
# Date: 30-May-2025 #
|
||||||
#########################################################################
|
#########################################################################
|
||||||
|
|
||||||
# Version for display purposes
|
# Version for display purposes
|
||||||
Version="v1.11.00"
|
Version="v1.11.02"
|
||||||
|
|
||||||
# Have the databases passed integrity checks
|
# Have the databases passed integrity checks
|
||||||
CheckedDB=0
|
CheckedDB=0
|
||||||
@ -219,11 +219,11 @@ FreeSpaceAvailable() {
|
|||||||
[ "$1" != "" ] && Multiplier=$1
|
[ "$1" != "" ] && Multiplier=$1
|
||||||
|
|
||||||
# Available space where DB resides
|
# Available space where DB resides
|
||||||
SpaceAvailable=$(df $DFFLAGS "$AppSuppDir" | tail -1 | awk '{print $4}')
|
SpaceAvailable=$(df $DFFLAGS "$DBDIR" | tail -1 | awk '{print $4}')
|
||||||
|
|
||||||
# Get size of DB and blobs, Minimally needing sum of both
|
# Get size of DB and blobs, Minimally needing sum of both
|
||||||
LibSize="$(stat $STATFMT $STATBYTES "$CPPL.db")"
|
LibSize="$(stat $STATFMT $STATBYTES "${DBDIR}/$CPPL.db")"
|
||||||
BlobsSize="$(stat $STATFMT $STATBYTES "$CPPL.blobs.db")"
|
BlobsSize="$(stat $STATFMT $STATBYTES "${DBDIR}/$CPPL.blobs.db")"
|
||||||
SpaceNeeded=$((LibSize + BlobsSize))
|
SpaceNeeded=$((LibSize + BlobsSize))
|
||||||
|
|
||||||
# Compute need (minimum $Multiplier existing; current, backup, temp and room to write new)
|
# Compute need (minimum $Multiplier existing; current, backup, temp and room to write new)
|
||||||
@ -277,21 +277,25 @@ ConfirmYesNo() {
|
|||||||
Answer=""
|
Answer=""
|
||||||
while [ "$Answer" != "Y" ] && [ "$Answer" != "N" ]
|
while [ "$Answer" != "Y" ] && [ "$Answer" != "N" ]
|
||||||
do
|
do
|
||||||
printf "%s (Y/N) ? " "$1"
|
if [ $Scripted -eq 1 ]; then
|
||||||
read Input
|
Answer=Y
|
||||||
|
else
|
||||||
|
printf "%s (Y/N) ? " "$1"
|
||||||
|
read Input
|
||||||
|
|
||||||
# EOF = No
|
# EOF = No
|
||||||
case "$Input" in
|
case "$Input" in
|
||||||
YES|YE|Y|yes|ye|y)
|
YES|YE|Y|yes|ye|y)
|
||||||
Answer=Y
|
Answer=Y
|
||||||
;;
|
;;
|
||||||
NO|N|no|n)
|
NO|N|no|n)
|
||||||
Answer=N
|
Answer=N
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
Answer=""
|
Answer=""
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
# Unrecognized
|
# Unrecognized
|
||||||
if [ "$Answer" != "Y" ] && [ "$Answer" != "N" ]; then
|
if [ "$Answer" != "Y" ] && [ "$Answer" != "N" ]; then
|
||||||
@ -976,11 +980,6 @@ DoRepair() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Temporary DB actions
|
|
||||||
Output "Performing DB cleanup tasks."
|
|
||||||
WriteLog "DB Cleanup tasks."
|
|
||||||
"$PLEX_SQLITE" $CPPL.db "DELETE from statistics_bandwidth where account_id is NULL;"
|
|
||||||
|
|
||||||
# Continue
|
# Continue
|
||||||
Output "Exporting current databases using timestamp: $TimeStamp"
|
Output "Exporting current databases using timestamp: $TimeStamp"
|
||||||
Fail=0
|
Fail=0
|
||||||
@ -1739,6 +1738,59 @@ DoPrunePhotoTranscoder() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
##### Special function
|
||||||
|
|
||||||
|
# Remove bloat records from PMS database on a full disk
|
||||||
|
DoDeflate() {
|
||||||
|
|
||||||
|
if IsRunning; then
|
||||||
|
Output "Please stop PMS first and try again."
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Get into DBDIR
|
||||||
|
cd "$DBDIR"
|
||||||
|
|
||||||
|
# Run this loop until we get a partial block
|
||||||
|
Removed=100000000
|
||||||
|
Limit=100000000
|
||||||
|
TotalRemoved=0
|
||||||
|
|
||||||
|
# Turn it off
|
||||||
|
Result="$("$PLEX_SQLITE" "$CPPL.db" 'PRAGMA journal_mode = off;')"
|
||||||
|
|
||||||
|
InitialSize=$(stat $STATFMT $STATBYTES $CPPL.db)
|
||||||
|
|
||||||
|
SQL="PRAGMA journal_mode = off;"
|
||||||
|
SQL="$SQL Begin transaction; "
|
||||||
|
SQL="$SQL DELETE from statistics_bandwidth where rowid in ("
|
||||||
|
SQL="$SQL select rowid from statistics_bandwidth where account_id is null limit 100000000 );"
|
||||||
|
SQL="$SQL Commit;"
|
||||||
|
SQL="$SQL select changes();"
|
||||||
|
|
||||||
|
Count=1
|
||||||
|
while [ $Removed -eq $Limit ]
|
||||||
|
do
|
||||||
|
Output "Removing - block $Count"
|
||||||
|
Removed=$("$PLEX_SQLITE" "$CPPL.db" "$SQL" | tail -1)
|
||||||
|
TotalRemoved=$(($TotalRemoved + $Removed))
|
||||||
|
Count=$((Count+1))
|
||||||
|
done
|
||||||
|
|
||||||
|
Output "Removed $TotalRemoved records."
|
||||||
|
Output "Vacuuming DB to reclaim working space."
|
||||||
|
"$PLEX_SQLITE" "$CPPL.db" "vacuum;"
|
||||||
|
|
||||||
|
# Check size
|
||||||
|
Size=$(stat $STATFMT $STATBYTES $CPPL.db)
|
||||||
|
Output "Initial Database size = $((InitialSize / 1000000)) MB"
|
||||||
|
Output "Final Database size = $((Size / 1000000)) MB"
|
||||||
|
|
||||||
|
# Turn journal mode back on
|
||||||
|
Result="$("$PLEX_SQLITE" "$CPPL.db" "PRAGMA journal_mode = WAL;")"
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
# Main utility begins here #
|
# Main utility begins here #
|
||||||
@ -1958,8 +2010,10 @@ do
|
|||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo " 88 - 'update' - Check for updates."
|
echo " 88 - 'update' - Check for updates."
|
||||||
echo " 99 - 'quit' - Quit immediately. Keep all temporary files."
|
echo " 98 - 'quit' - Quit immediately. Keep all temporary files."
|
||||||
echo " 'exit' - Exit with cleanup options."
|
echo " 99 - 'exit' - Exit with cleanup options."
|
||||||
|
echo " "
|
||||||
|
echo "911 - 'deflate' - Deflate a bloated PMS database"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $Scripted -eq 0 ]; then
|
if [ $Scripted -eq 0 ]; then
|
||||||
@ -2030,7 +2084,7 @@ do
|
|||||||
if ! FreeSpaceAvailable; then
|
if ! FreeSpaceAvailable; then
|
||||||
WriteLog "Auto - FAIL - Insufficient free space on $AppSuppDir"
|
WriteLog "Auto - FAIL - Insufficient free space on $AppSuppDir"
|
||||||
Output "Error: Unable to run automatic sequence. Insufficient free space available on $AppSuppDir"
|
Output "Error: Unable to run automatic sequence. Insufficient free space available on $AppSuppDir"
|
||||||
Output " Space needed = $SpaceNeeded MB, Space available = $SpaveAvailable MB"
|
Output " Space needed = $SpaceNeeded MB, Space available = $SpaceAvailable MB"
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -2348,7 +2402,7 @@ do
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# Quit
|
# Quit
|
||||||
99|quit)
|
98|quit)
|
||||||
|
|
||||||
Output "Retaining all temporary work files."
|
Output "Retaining all temporary work files."
|
||||||
WriteLog "Exit - Retain temp files."
|
WriteLog "Exit - Retain temp files."
|
||||||
@ -2356,7 +2410,7 @@ do
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# Orderly Exit
|
# Orderly Exit
|
||||||
exit)
|
99|exit)
|
||||||
|
|
||||||
# If forced exit set, exit and retain
|
# If forced exit set, exit and retain
|
||||||
if [ $Exit -eq 1 ]; then
|
if [ $Exit -eq 1 ]; then
|
||||||
@ -2388,6 +2442,21 @@ do
|
|||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
# Deflate
|
||||||
|
911|defl*)
|
||||||
|
|
||||||
|
Output "This command operates directly on your existing PMS DB."
|
||||||
|
Output "There are no backups however the DB is protected by transaction blocking."
|
||||||
|
Output "DO NOT INTERRUPT once started but you can if you must (It will resume where it left off)."
|
||||||
|
Output " "
|
||||||
|
if ! ConfirmYesNo "Ok to begin deflating the databases?" ; then
|
||||||
|
Output "No action taken."
|
||||||
|
WriteLog "Deflate - No action taken."
|
||||||
|
else
|
||||||
|
DoDeflate
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
# Unknown command
|
# Unknown command
|
||||||
*)
|
*)
|
||||||
WriteLog "Unknown command: '$Input'"
|
WriteLog "Unknown command: '$Input'"
|
||||||
|
|||||||
20
ReleaseNotes
20
ReleaseNotes
@ -8,6 +8,26 @@
|
|||||||

|

|
||||||
|
|
||||||
# Release Info:
|
# Release Info:
|
||||||
|
v1.11.02 - Special release
|
||||||
|
|
||||||
|
1. Database bloat - (Enh) A better method was found to handle bloat processing.
|
||||||
|
This new method works on SSD/HDDs where the disk is full and PMS can't run.
|
||||||
|
There is no free space required to perform this task.
|
||||||
|
|
||||||
|
Each "block" being removed is 100 million records.
|
||||||
|
The CPU will have one core maxed at 100% for the duration.
|
||||||
|
|
||||||
|
Before & after info will be printed after final cleanup is finished.
|
||||||
|
|
||||||
|
New command name: Deflate ( # 911 )
|
||||||
|
|
||||||
|
v1.11.01
|
||||||
|
|
||||||
|
1. Database bloat - (New) Database bloat processing now surrounded by TRANSACTION/COMMIT to speed processing.
|
||||||
|
2. Space Needed - (Fix) Handle cases where "Databases" directory is not on the same volume as AppSuppDir.
|
||||||
|
3. Menu options - (New) Add option 98 = quit. Rename 99 = exit.
|
||||||
|
4. Reporting - (Fix) When insufficient space available, Now print out how much is needed
|
||||||
|
|
||||||
v1.11.00
|
v1.11.00
|
||||||
|
|
||||||
1. Rename Utility - Rename this tool to be compliant with Plex inc. Trademark Policy.
|
1. Rename Utility - Rename this tool to be compliant with Plex inc. Trademark Policy.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user