fix: Elasticsearch sql, field_multi_value_leniency -> true; the API returns the first value from the array with no guarantee of consistent results.

This commit is contained in:
taojinlong 2022-02-28 14:55:23 +08:00
parent 84e65cb659
commit d6f0c07ad4

View File

@ -6,4 +6,5 @@ import lombok.Data;
public class Requst {
private String query;
private Integer fetch_size = 10000;
private boolean field_multi_value_leniency = true;
}