You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running a heavy process (deleting over 100k urls or domains)
Press Control + C
Processes on the CouchDB server keep running. Sometimes overloading the server.
I often need to restart the DB in order to get rid of the left over processes.
This might be the cause for the 'unknown error' described in another issue.
The text was updated successfully, but these errors were encountered:
I'm having better results removing data using chunks:
This oneliner will remove the urls in steps of 5000 urls chunk=5000; size=$(bbrf urls|wc -l); urls="1,${chunk}p" parts=$((size%chunk?size/chunk+1:size/chunk)) ; echo $parts ; for i in $(seq 1 $parts) ; do echo "try $i"; bbrf urls|sed -n "$urls"|bbrf url remove - ; done
After more testing I can confirm that using chunks works faster and it's more reliable than the regular way.
pdelteil
changed the title
[issue] Cancelling bbrf process keeps running on CouchDB
[issue] Canceled bbrf process keeps running on CouchDB
May 18, 2021
I have tested this situation many times:
I often need to restart the DB in order to get rid of the left over processes.
This might be the cause for the 'unknown error' described in another issue.
The text was updated successfully, but these errors were encountered: