Implement check if php serialize_precision
is properly set to prevent huge matomo_archive_blob
-tables
#23190
Labels
Enhancement
For new feature suggestions that enhance Matomo's capabilities or add a new report, new API etc.
To Triage
An issue awaiting triage by a Matomo core team member
Summary
The php
serialize_precision
ini setting directly influences the BLOB size and thereby the size ofmatomo_archive_blob
-tables.E.g.
serialize_precision=100
results in:With a setting like this the
matomo_archive_blob
-tables really become very huge.Default setting
serialize_precision=-1
results in:Also see:
https://www.php.net/manual/en/ini.core.php#ini.serialize-precision
Since PHP 7.1 the default is
serialize_precision=-1
.For PHP versions < 7.1 the default is
serialize_precision=17
.Your Environment
The text was updated successfully, but these errors were encountered: