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
Akeneo Connector 100.4.10
mysql standard installation 5.6, 5.7, MariaDB <=10.2.3
Steps to reproduce
Setup a common product model in Akeneo
Add 94 variant child products with SKU length of 10 characters
Import models and products into Magento
Expected result
All children are connected to the configurable parent in Magento
Actual result
93 children are connected to the parent configurable product in Magento
Reason
The standard length of mysql group_concat is 1024 characters. Mysql will cut the concatenated string of child skus at char 1024.
Not all hosting providers allow to change global mysql settings
Quick fix: Set the group_concat_max_len for the current db session before executing the "Insert Into Select" query and change type text to mediumtext for the _children column
Long term: Use a parent child relation table
The text was updated successfully, but these errors were encountered:
Environment and configuration
Akeneo Connector 100.4.10
mysql standard installation 5.6, 5.7, MariaDB <=10.2.3
Steps to reproduce
Expected result
All children are connected to the configurable parent in Magento
Actual result
93 children are connected to the parent configurable product in Magento
Reason
The standard length of mysql group_concat is 1024 characters. Mysql will cut the concatenated string of child skus at char 1024.
Not all hosting providers allow to change global mysql settings
The second limitation we hit with a lot more variant products is the column type for children
Possible Solution:
The text was updated successfully, but these errors were encountered: