My problem is that I'm getting
WiredTigerIndex::insert: key too large to index
when trying to create an index and after looking at this answer, there is a lot of talk about how basically my problem is that I'm trying
to create an index on field or fields that exceeds 1024 bytes in length
What I don't understand is what does is what it mean the 'field' that is taking up 1024 bytes. Initially I thought it means the actual name of the field, but this does not make sense because the name isn't long at all and I have much longer names in the database. I also see that in the documentation there is talk about "Index key limit" which is "The total size of an index entry,".
And there is "Index name length", which is "Fully qualified index names" but it isn't clear to me what is each one.
Bottom line, I would like to know what is it that is constructs a 'field' that makes it exceed 1024 bytes.
Thanks very much in advance