Chinaunix

标题: 请教ndbcluster数据表导入问题 [打印本页]

作者: likingzi    时间: 2018-12-16 22:40
标题: 请教ndbcluster数据表导入问题
我新建了一个5节点的cluster集群,1个ndb_mgmd节点,2个ndbd节点,2个sql节点。
在导入数据时,发现部分表无法导入,单表text字段数目最多支持51个,超过1个都不行!
CREATE TABLE `test` (
  `SEQ_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `DATA_1`  text,
  `DATA_2`  text,
  `DATA_3`  text,
  ,,,     ■■■ ndbcluster此处最多支持51个text/blob字段,有无办法支持上百个text/blob字段?
  `DATA_51` text,
  PRIMARY KEY (`SEQ_ID`)
) ENGINE=ndbcluster AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
同时还搭建了一套2节点的PXC集群,就没有这些莫名其妙的限制。
这个问题困我几天了,在此含泪求救




作者: likingzi    时间: 2018-12-22 21:37
mysql官网有人回复如下:
Posted by: Mikael Ronström
Date: December 19, 2018 04:37AM
There is work ongoing to increase the row size limit.
Would be pretty easy to change the inline size from
configurable parameter as well, so will consider this
as well to make it possible to have more TEXT columns
in a table.




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2