Bug #92863
closedTCA change for sys_file_reference l10n_parent kills performance
100%
Description
Having an instance with 30k+ images used in 30k+ news articles stored in the same sysfolder.
The changes done with #69906 make the BE unusable. It can take minutes to open a news record for editing.
Also adding an image to a new news record takes minutes.
Updated by Markus Klein about 4 years ago
- Related to Bug #69906: Translated categories can not be (re-)assigned to original record in listview added
Updated by Markus Klein about 4 years ago
Debugging shows that it tries to handle the l10n_parent for sys_file_references.
Updated by Markus Klein about 4 years ago
Workaround:
Create TCA override sitesetup/Configuration/TCA/Overrides/sys_file_reference.php
with
<?php
$GLOBALS['TCA']['sys_file_reference']['columns']['l10n_parent']['config'] = [
'type' => 'group',
'internal_type' => 'db',
'allowed' => 'sys_file_reference',
'size' => '1',
'maxitems' => '1',
'minitems' => '0',
];
Updated by Markus Klein about 4 years ago
- Related to Bug #81996: Read ony select field 'renderType' => 'selectSingle' renders all available items added
Updated by Markus Klein about 4 years ago
- Related to Bug #81036: TCA l18n_parent is processed for sys_language_uid 0 added
Updated by Gerrit Code Review about 4 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/66671
Updated by Gerrit Code Review about 4 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/66671
Updated by Gerrit Code Review about 4 years ago
Patch set 1 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/66752
Updated by Markus Klein about 4 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 22c0fa3af84f2015f34ecec79080f2171ab77a3c.
Updated by Georg Ringer about 4 years ago
- Related to Bug #92889: High CPU Load after Update from 10.4.9 to 10.4.10 added
Updated by Sebastian Michaelsen about 4 years ago
- Related to Bug #93040: TYPO3 10.4.10: Opening a file information popup takes a very long time added
Updated by Benni Mack almost 4 years ago
- Status changed from Resolved to Closed