Compare commits
2 commits
49f72dc86b
...
f5e8ff1091
Author | SHA1 | Date | |
---|---|---|---|
f5e8ff1091 | |||
faca580191 |
2 changed files with 14 additions and 6 deletions
|
@ -52,7 +52,7 @@ printf "\rProcessQueue\t\t%s\n\r" "${cemax}"
|
|||
cf=100
|
||||
cfmax=0
|
||||
while [[ ${cf} -gt 0 ]]; do
|
||||
cf=$(sudo mariadb friendica -B -N -q -e "delete from workerqueue where \`id\` in (select distinct w2.\`id\` from workerqueue w1 inner join workerqueue w2 where w1.\`id\` > w2.\`id\` and w1.parameter = w2.parameter and w1.command = \"UpdateContact\" and w1.done = 0) limit ${ce}; select row_count();")
|
||||
cf=$(sudo mariadb friendica -B -N -q -e "delete from workerqueue where \`id\` in (select distinct w2.\`id\` from workerqueue w1 inner join workerqueue w2 where w1.\`id\` > w2.\`id\` and w1.\`parameter\` = w2.\`parameter\` and w1.command = \"UpdateContact\" and w1.\`pid\` = 0 and w1.\`done\` = 0) limit ${cf}; select row_count();")
|
||||
cfmax=$((cfmax + cf))
|
||||
printf "\rWorkerQueue\t\t%s\r" "${cfmax}"
|
||||
done
|
||||
|
|
|
@ -73,7 +73,6 @@ loop() {
|
|||
fi
|
||||
done
|
||||
result_string=$(printf "%s R%dms" "${result_string}" $(($(($(date +%s%N) / 1000000)) - t_r)))
|
||||
nt=$(("${nt}" + 1))
|
||||
t_id=$(($(date +%s%N) / 1000000))
|
||||
if [[ -n "${id}" ]]; then
|
||||
while read -r avatar photo thumb micro; do
|
||||
|
@ -196,8 +195,16 @@ loop() {
|
|||
if [[ -f "${nlock}" && $(cat "${nlock}") == "${id}" ]]; then
|
||||
read -r n_tmp nt_tmp <"${nfile}"
|
||||
if [[ -n "${n_tmp}" && -n "${nt_tmp}" ]]; then
|
||||
n=$((n_tmp + error_found))
|
||||
nt=$((nt_tmp + 1))
|
||||
if [[ "${n_tmp}" -ge "${n}" ]]; then
|
||||
n=$((n_tmp + error_found))
|
||||
else
|
||||
n=$((n + error_found))
|
||||
fi
|
||||
if [[ "${nt_tmp}" -ge "${nt}" ]]; then
|
||||
nt=$((nt_tmp + 1))
|
||||
else
|
||||
nt=$((nt + 1))
|
||||
fi
|
||||
if [[ $(cat "${nlock}") == "${id}" ]]; then
|
||||
echo "${n} ${nt}" >"${nfile}"
|
||||
if [[ -f "${nlock}" ]]; then
|
||||
|
@ -231,7 +238,7 @@ loop() {
|
|||
#Go to the Friendica installation
|
||||
cd "${folder}" || exit
|
||||
echo "${n} ${nt}" >"${nfile}"
|
||||
until [[ $((nt + limit)) -ge "${dbcount}" || "${lastid}" -ge "${maxid}" ]]; do
|
||||
until [[ $((nt + limit)) -gt "${dbcount}" || "${lastid}" -gt "${maxid}" ]]; do
|
||||
c=""
|
||||
if [[ "${intense_optimizations}" -gt 0 ]]; then
|
||||
c=$("${dbengine}" "${db}" -B -N -q -e "select \`id\` from \`contact\` where \`id\` > ${lastid} and (\`photo\` like \"https:\/\/${url}/avatar/%\" or \`photo\` like \"\") order by id limit ${limit}")
|
||||
|
@ -265,8 +272,9 @@ until [[ $((nt + limit)) -ge "${dbcount}" || "${lastid}" -ge "${maxid}" ]]; do
|
|||
if [[ -f "${nlock}" ]]; then
|
||||
echo "" >"${nlock}"
|
||||
fi
|
||||
rl=1
|
||||
#If the data can't be read, we just regenerate it the next loop
|
||||
fi
|
||||
rl=1
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Add table
Reference in a new issue