异常信息
com.stepstone.search.hnswlib.jna.exception.ItemCannotBeInsertedIntoTheVectorSpaceExceptionat com.stepstone.search.hnswlib.jna.Index.checkResultCode(Index.java:247)at com.stepstone.search.hnswlib.jna.Index.addItem(Index.java:125)
原因是初始化index环境时候声明了添加元素个数,但是index.addItem时候超出了这个最大数量
Index index = createIndexInstance(SpaceName.COSINE, 3);index.initialize(3); // 初始化添加最大数量是3index.addItem(new float[]{1.3f, 1.2f, 1.5f}, 1L);index.addItem(new float[]{1.3f, 1.2f, 1.49f}, 2L);index.addItem(new float[]{1.3f, 1.2f, 1.48f}, 3L);//到这里数据正常index.addItem(new float[]{1.3f, 1.2f, 1.48f}, 4L); //错误复线