when I created table in mysqlcluster 7.5.17,I got the error message like
Got error 708 'No more attribute metadata records (increase MaxNoOfAttributes)' from NDBCLUSTER
so I used ndb_config -q MaxNoOfAttributes got the number for MaxNoOfAttributes was 40960,
I select columns from information_schema get number is 28777
select count(*) from information_schema.COLUMNS
where TABLE_SCHEMA not in ('mysql','information_schema','ndbinfo','performance_schema','sys');
+----------+
| count(*) |
+----------+
| 28777 |
+----------+
I want to know the MaxNoOfAttributes params where is limit?