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
There are lots of entries generated in the table sys_refindex and thereby sys_refindex becomes huge (> 1GB)
Maybe this might only be the case if you run:
vendor/bin/typo3cms referenceindex:update
See count:
SELECT`tablename`, COUNT(hash) as count FROM`sys_refindex`GROUP BY`tablename`ORDER BY count DESC
tablename
count
tx_luxletter_domain_model_link
~2900000
tx_luxletter_domain_model_log
302768
tx_luxletter_domain_model_queue
153330
sys_file
21512
sys_file_metadata
16349
tx_news_domain_model_news
14954
sys_file_reference
12956
tt_content
12710
sys_category
9187
…
…
Potential fix
Disable the reference index for records of the table tx_luxletter_domain_model_link (and maybe also for tx_luxletter_domain_model_log and tx_luxletter_domain_model_queue) via PSR-14 event TYPO3\CMS\Core\DataHandling\Event\IsTableExcludedFromReferenceIndexEvent.
There are lots of entries generated in the table
sys_refindex
and therebysys_refindex
becomes huge (> 1GB)Maybe this might only be the case if you run:
See count:
Potential fix
Disable the reference index for records of the table
tx_luxletter_domain_model_link
(and maybe also fortx_luxletter_domain_model_log
andtx_luxletter_domain_model_queue
) via PSR-14 eventTYPO3\CMS\Core\DataHandling\Event\IsTableExcludedFromReferenceIndexEvent
.https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/Events/Events/Core/DataHandling/IsTableExcludedFromReferenceIndexEvent.html
Then manually clean up old records:
The text was updated successfully, but these errors were encountered: