我在正确索引动态数字字段时遇到了一些问题,似乎它们总是作为字符串索引。
根据我的理解,在索引动态数字字段时,我必须使用动态模板:
PUT /com.product.product
{
"mappings": {
"com.product.Product": {
"dynamic_templates": [
{
"numeric_sort": {
"match_mapping_type": "*",
"match_pattern": "regex",
"match": "^sort_num_.*",
"mapping": {
"type": "double"
}
}
}
]
}
}
}
我正在事件侦听器中上载的:
@Configuration
@Transactional
public abstract class DynamicTemplateConfig {
@EventListener
public void addDynamicTemplates(ContextRefreshedEvent event) {
if (this.searchIndexingIsActive) {
this.addDynamicTemplates();
}
}
...
}
我在一个网桥上索引属性:
public class PropertyValueFieldBridge implements FieldBridge {
...
private void indexBigDecimalProperties(Document document, LuceneOptions luceneOptions, PropertyBigDecimal property) {
String fieldName = PREFIX_SORT + NUMERIC + DELIMITER + property.getProperty().getCode();
Double indexedValue = property.getValue().doubleValue();
luceneOptions.addNumericFieldToDocument(
fieldName,
indexedValue,
document);
}
}
在索引这些bigdecimal属性之后,我总是以索引的字符串属性结束:
"_source": {
"id": "1",
"sort_id": 1,
"filter_id": 1,
"sort_num_quantity": "115.0"
}
当我尝试对这个属性进行排序时,有以下例外:
org.hibernate.search.exception.SearchException: Cannot automatically determine the field type for field 'sort_num_quantity'. Use byField(String, Sort.Type) to provide the sort type explicitly.
at org.hibernate.search.query.dsl.sort.impl.SortFieldStates.getCurrentSortFieldTypeFromMetamodel(SortFieldStates.java:177) ~[hibernate-search-engine-5.11.5.Final.jar:5.11.5.Final]
at org.hibernate.search.query.dsl.sort.impl.SortFieldStates.determineCurrentSortFieldTypeAutomaticaly(SortFieldStates.java:150) ~[hibernate-search-engine-5.11.5.Final.jar:5.11.5.Final]
at org.hibernate.search.query.dsl.sort.impl.ConnectedSortContext.byField(ConnectedSortContext.java:42) ~[hibernate-search-engine-5.11.5.Final.jar:5.11.5.Final]
我尽量避免使用 byField(String, Sort.Type)
因为它需要对每个属性进行显式验证,我可能不知道这些属性的名称和类型。
我在索引过程中是否做错了什么?
提前谢谢
1条答案
按热度按时间dauxcl2d1#
我不认为你做错了什么。HibernateSearch5中实验性的elasticsearch集成并不真正支持动态字段。您不能预先指定字段的类型,对于动态字段,它显然默认为字符串类型。
升级到HibernateSearch6(目前处于候选版本阶段)将是一个解决方案,因为它通过字段模板支持动态字段HibernateSearch6API是不同的,但是,迁移可能需要大量的工作。