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
Hi there,
we are running some archiver processes in parallel with code like that:
for ((n=0;n<4;n++)); do (${PHP_BIN} ${ARCHIVE_BIN} ${ARCHIVE_OPTS} >> ${LOG_FILE} 2>&1 &); done
Now users are telling us, that they got the email report 5 times. This matches the number of parallel archiver jobs. Is there a way to avoid this behaviour?
Installed version of Matomo is 3.8.0 on Debian 8.11 with PHP 5.6.40.
The text was updated successfully, but these errors were encountered:
tsteur
added
the
answered
For when a question was asked and we referred to forum or answered it.
label
Mar 18, 2019
I recommend you add a sleep 5 or sleep $n after launching an archiver which should fix the problem where it possible runs into a race condition. You can generally launch multiple archivers at once, but there should a little gap in between.
Hi there,
we are running some archiver processes in parallel with code like that:
for ((n=0;n<4;n++)); do (${PHP_BIN} ${ARCHIVE_BIN} ${ARCHIVE_OPTS} >> ${LOG_FILE} 2>&1 &); done
Now users are telling us, that they got the email report 5 times. This matches the number of parallel archiver jobs. Is there a way to avoid this behaviour?
Installed version of Matomo is 3.8.0 on Debian 8.11 with PHP 5.6.40.
The text was updated successfully, but these errors were encountered: