Hi,

Anyone here using the latest typo3 with MySQL cluster running ndbcluster engine?

I'm having problems with creating sys_file_reference table because of the 
hardcoded row size limit supported by ndbcluster which is 14000.

Other tables seem to be OK, but only sys_file_reference:

==========================================
Query:
CREATE TABLE sys_file_reference (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL default '0',
tstamp int(11) NOT NULL default '0',
crdate int(11) NOT NULL default '0',
cruser_id int(11) NOT NULL default '0',
sorting int(10) NOT NULL default '0',
deleted tinyint(4) NOT NULL default '0',
hidden tinyint(4) NOT NULL default '0',
t3ver_oid int(11) NOT NULL default '0',
t3ver_id int(11) NOT NULL default '0',
t3ver_wsid int(11) NOT NULL default '0',
t3ver_label varchar(30) NOT NULL default '',
t3ver_state tinyint(4) NOT NULL default '0',
t3ver_stage int(11) NOT NULL default '0',
t3ver_count int(11) NOT NULL default '0',
t3ver_tstamp int(11) NOT NULL default '0',
t3ver_move_id int(11) NOT NULL default '0',
t3_origuid int(11) NOT NULL default '0',
sys_language_uid int(11) NOT NULL default '0',
l10n_parent int(11) NOT NULL default '0',
l10n_diffsource mediumblob NOT NULL,
uid_local int(11) NOT NULL default '0',
uid_foreign int(11) NOT NULL default '0',
tablenames varchar(64) NOT NULL default '',
fieldname varchar(64) NOT NULL default '',
sorting_foreign int(11) NOT NULL default '0',
table_local varchar(64) NOT NULL default '',
title tinytext,
description text,
alternative tinytext,
link varchar(1024) NOT NULL default '',
downloadname tinytext,
crop varchar(4000) NOT NULL default '',
autoplay tinyint(4) NOT NULL default '0',
PRIMARY KEY (uid),
KEY parent (pid,deleted),
KEY tablenames_fieldname (tablenames(32),fieldname(12)),
KEY deleted (deleted),
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);
Error:
Row size too large. The maximum row size for the used table type, not counting 
BLOBs, is 14000. This includes storage overhead, check the manual. You have to 
change some columns to TEXT or BLOBs
==========================================

Any hints of what could be optimized to be handled by ndbcluster would be 
greatly appreciated.
_______________________________________________
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Reply via email to