ylon0x1
ylon0x1

Reputation: 1

error: Can't create or modify index in space: index id too big

ive got a temp space as a buffer, so i update indexes before inserting and deleting them after tuples are moved to another space. some time after got this error: *Can't create or modify index in space: index id too big *

ive tried increasing number of indexes by box.schema.INDEX_MAX but that didnt help. in the docs written that index id = last index id + 1, so ive reached some kind of limit? cannot find anything about max index id. anyone has an idea?

Upvotes: 0

Views: 75

Answers (1)

Dmitry Trifonov
Dmitry Trifonov

Reputation: 1119

There is "Number of indexes in a space" limitation exists, which is 128. So, you can't change it (without modifying Tarantool source code and building your own variant).

Upvotes: 0

Related Questions