Hi Fvyaba,
There is no information about it in documentation but according several
places in the code I see that it isn't greater than int32.
void ReadTableMetaVector(ignite::impl::binary::BinaryReaderImpl&
reader, TableMetaVector& meta)
{
int32_t metaNum = reader.ReadInt32();
meta.clear();
meta.reserve(static_cast<size_t>(metaNum));
for (int32_t i = 0; i < metaNum; ++i)
{
meta.push_back(TableMeta());
meta.back().Read(reader);
}
So all restrictions that you can see will be related to available memory on
your nodes.
Thank you,
Andrei
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/