-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid using Queued Tracking when importing logs #240
Comments
Semi-related: |
Indeed, would be great to have this fixed. Here's a workaround that seems to do the trick for me: use the |
A combination of @EreMaijala argument and "--disable-bulk-tracking" works for us. We've set --recorders to 16 to get at least decent speed ... |
Could we implement this fix in Matomo 4 @tsteur ? |
Would generally always add the parameter and not have a flag for it. So not do this:
but always do this: add to all tracking requests a URL parameter &queuedtracking=0 |
👍 |
fixes matomo-org/matomo#12340
When importing logs there is not really any benefit to use queued tracking for those requests. It might be even rather an overhead pretty much. There is eg no performance benefit because with the importer you can already import X requests at once (which is efficient).
I'd suggest to append to all tracking requests a URL parameter
&queuedtracking=0
(see matomo-org/plugin-QueuedTracking#96) which avoids queued tracking. We could have an--enable-queued-tracking
flag that sets the value to1
if for some reason a user still wants to put the requests into queued tracking first.This way you will always get accurate results whether logs were imported correctly, how many, etc. Queued tracking can otherwise not give this information.
cc @mattab
The text was updated successfully, but these errors were encountered: