// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.searchdefinition.processing; import com.yahoo.config.application.api.DeployLogger; import com.yahoo.searchdefinition.RankProfileRegistry; import com.yahoo.searchdefinition.document.SDField; import com.yahoo.searchdefinition.RankProfile; import com.yahoo.searchdefinition.Search; import com.yahoo.vespa.model.container.search.QueryProfiles; import java.util.Iterator; /** * Expresses literal boosts in terms of extra indices with rank boost. * One extra index named indexname_exact is added for each index having * a fields with literal-boosts of zero or more (zero to support other * rank profiles setting a literal boost). Complete boost values in to fields * are translated to rank boosts to the implementation indices. * These indices has no positional * or phrase support and contains concatenated versions of each field value * of complete-boosted fields indexed to indexname. A search for indexname * will be rewritten to also search indexname_exaxt * * @author bratseth */ public class LiteralBoost extends Processor { public LiteralBoost(Search search, DeployLogger deployLogger, RankProfileRegistry rankProfileRegistry, QueryProfiles queryProfiles) { super(search, deployLogger, rankProfileRegistry, queryProfiles); } /** Adds extra search fields and indices to express literal boosts */ @Override public void process(boolean validate, boolean documentsOnly) { checkRankModifierRankType(search); addLiteralBoostsToFields(search); reduceFieldLiteralBoosts(search); } /** Checks if literal boost is given using rank: , and set the actual literal boost accordingly. */ private void checkRankModifierRankType(Search search) { for (SDField field : search.allConcreteFields()) { if (field.getLiteralBoost() > -1) continue; // Let explicit value take precedence if (field.getRanking().isLiteral()) field.setLiteralBoost(100); } } /** * Ensures there are field boosts for all literal boosts mentioned in rank profiles. * This is required because boost indices will only be generated by looking * at field boosts */ private void addLiteralBoostsToFields(Search search) { Iterator i = matchingRankSettingsIterator(search, RankProfile.RankSetting.Type.LITERALBOOST); while (i.hasNext()) { RankProfile.RankSetting setting = (RankProfile.RankSetting)i.next(); SDField field = search.getConcreteField(setting.getFieldName()); if (field == null) continue; if (field.getLiteralBoost() < 0) field.setLiteralBoost(0); } } private void reduceFieldLiteralBoosts(Search search) { for (SDField field : search.allConcreteFields()) { if (field.getLiteralBoost() < 0) continue; reduceFieldLiteralBoost(field,search); } } private void reduceFieldLiteralBoost(SDField field,Search search) { SDField literalField = addField(search, field, "literal", "{ input " + field.getName() + " | tokenize | index " + field.getName() + "_literal; }", "literal-boost"); literalField.setWeight(field.getWeight() + field.getLiteralBoost()); } }