【发布时间】:2019-01-17 16:17:17
【问题描述】:
当我在 mysqlcluster 7.5.17 中创建表时,我收到类似
的错误消息从 NDBCLUSTER 收到错误 708“没有更多属性元数据记录(增加 MaxNoOfAttributes)”
所以我使用 ndb_config -q MaxNoOfAttributes 得到 MaxNoOfAttributes 的数字是 40960,
我从 information_schema 中选择列得到编号是 28777
select count(*) from information_schema.COLUMNS
where TABLE_SCHEMA not in ('mysql','information_schema','ndbinfo','performance_schema','sys');
+----------+
| count(*) |
+----------+
| 28777 |
+----------+
我想知道 MaxNoOfAttributes 参数在哪里限制?
【问题讨论】:
标签: mysql mysql-cluster