From 18524edc41de954f2f15cd807d7760a4312cf4a2 Mon Sep 17 00:00:00 2001 From: lior-k Date: Mon, 7 May 2018 21:18:56 +0300 Subject: [PATCH] Update README.md added a comment regarding issue #6 --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 1b523b6..d6c81cb 100644 --- a/README.md +++ b/README.md @@ -144,5 +144,11 @@ def encode_array(arr): 3. `vector`: The vector (comma separated) to compare to. +* Question: I've encountered the error `java.lang.IllegalStateException: binaryEmbeddingReader can't be null` while running the query. what should I do? + + Answer: this error happens when the plugin fails to access the field you specified in the `field` parameter in at least one of the documents. + + To solve it: make sure that **all** the documents in your index contains the filed you specified in the `field` parameter. +see more details [here](https://github.com/lior-k/fast-elasticsearch-vector-scoring/issues/6)