aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/processing/FastAccessValidator.java
blob: 4e1c15b8ff3820cbdad898ace9f93380c994335c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.schema.processing;

import com.yahoo.config.application.api.DeployLogger;
import com.yahoo.schema.RankProfileRegistry;
import com.yahoo.schema.Schema;
import com.yahoo.schema.document.Attribute;
import com.yahoo.vespa.model.container.search.QueryProfiles;

import java.util.stream.Collectors;

/**
 * Validates the use of the fast-access property.
 *
 * @author bjorncs
 */
public class FastAccessValidator extends Processor {

    public FastAccessValidator(Schema schema, DeployLogger deployLogger, RankProfileRegistry rankProfileRegistry, QueryProfiles queryProfiles) {
        super(schema, deployLogger, rankProfileRegistry, queryProfiles);
    }

    @Override
    public void process(boolean validate, boolean documentsOnly) {
        if ( ! validate) return;

        String invalidAttributes = schema.allFields()
                                         .flatMap(field -> field.getAttributes().values().stream())
                                         .filter(FastAccessValidator::isIncompatibleAttribute)
                                         .map(Attribute::getName)
                                         .collect(Collectors.joining(", "));
        if ( ! invalidAttributes.isEmpty()) {
            throw new IllegalArgumentException(
                            "For " + schema + ": The following attributes have a type that is incompatible with fast-access: " +
                            invalidAttributes + ". Predicate, tensor and reference attributes are incompatible with fast-access.");
        }
    }

    private static boolean isIncompatibleAttribute(Attribute attribute) {
        return attribute.isFastAccess() && isTypeIncompatibleWithFastAccess(attribute.getType());
    }

    private static boolean isTypeIncompatibleWithFastAccess(Attribute.Type type) {
        switch (type) {
            case PREDICATE:
            case TENSOR:
            case REFERENCE:
                return true;
            default:
                return false;
        }
    }

}