Hi,
I have an index created with zoie-3.1.0 and I want to migrate it to zoie-4.0.0 but I've saw you have done some changes in ZoieSegmentReader
and now the method init() launches a NullPointerException because
NumericDocValues uidValues = reader.getNumericDocValues(AbstractZoieIndexable.DOCUMENT_ID_PAYLOAD_FIELD);
is null.
In indexes created with zoie-4.0.0 this method no have errors because the _ID field is created like
Field uidField = new NumericDocValuesField(AbstractZoieIndexable.DOCUMENT_ID_PAYLOAD_FIELD, id);
Migration of old indexes to the new version of zoie is possible?
Thanks in advance.
Regards,
Sonia