All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.model.arangosearch.ArangoSearchCreateOptions Maven / Gradle / Ivy

There is a newer version: 7.13.0
Show newest version
/*
 * DISCLAIMER
 *
 * Copyright 2018 ArangoDB GmbH, Cologne, Germany
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Copyright holder is ArangoDB GmbH, Cologne, Germany
 */

package com.arangodb.model.arangosearch;

import com.arangodb.entity.ViewType;
import com.arangodb.entity.arangosearch.*;
import com.arangodb.internal.serde.InternalSerializers;
import com.arangodb.shaded.fasterxml.jackson.databind.annotation.JsonSerialize;

import java.util.Arrays;
import java.util.Collection;

/**
 * @author Mark Vollmary
 */
public final class ArangoSearchCreateOptions {

    private final ViewType type;
    private String name;
    private Long consolidationIntervalMsec;
    private Long commitIntervalMsec;
    private Long cleanupIntervalStep;
    private ConsolidationPolicy consolidationPolicy;
    private Collection links;
    private Collection primarySorts;
    private ArangoSearchCompression primarySortCompression;
    private Collection storedValues;

    public ArangoSearchCreateOptions() {
        super();
        type = ViewType.ARANGO_SEARCH;
    }

    ArangoSearchCreateOptions name(final String name) {
        this.name = name;
        return this;
    }

    /**
     * @param consolidationIntervalMsec Wait at least this many milliseconds between committing index data changes
     *                                  and making them visible to
     *                                  queries (default: 60000, to disable use: 0). For the case where there are a
     *                                  lot of inserts/updates, a
     *                                  lower value, until commit, will cause the index not to account for them and
     *                                  memory usage would
     *                                  continue to grow. For the case where there are a few inserts/updates, a
     *                                  higher value will impact
     *                                  performance and waste disk space for each commit call without any added
     *                                  benefits.
     * @return options
     */
    public ArangoSearchCreateOptions consolidationIntervalMsec(final Long consolidationIntervalMsec) {
        this.consolidationIntervalMsec = consolidationIntervalMsec;
        return this;
    }

    /**
     * @param commitIntervalMsec Wait at least this many milliseconds between committing view data store changes and
     *                           making documents visible to
     *                           queries (default: 1000, to disable use: 0). For the case where there are a lot of
     *                           inserts/updates, a lower value,
     *                           until commit, will cause the index not to account for them and memory usage would
     *                           continue to grow. For the case
     *                           where there are a few inserts/updates, a higher value will impact performance and
     *                           waste disk space for each
     *                           commit call without any added benefits. Background: For data retrieval ArangoSearch
     *                           views follow the concept of
     *                           “eventually-consistent”, i.e. eventually all the data in ArangoDB will be matched by
     *                           corresponding query
     *                           expressions. The concept of ArangoSearch view “commit” operation is introduced to
     *                           control the upper-bound on the
     *                           time until document addition/removals are actually reflected by corresponding query
     *                           expressions. Once a “commit”
     *                           operation is complete all documents added/removed prior to the start of the “commit”
     *                           operation will be reflected
     *                           by queries invoked in subsequent ArangoDB transactions, in-progress ArangoDB
     *                           transactions will still continue to
     *                           return a repeatable-read state.
     * @return options
     */
    public ArangoSearchCreateOptions commitIntervalMsec(final Long commitIntervalMsec) {
        this.commitIntervalMsec = commitIntervalMsec;
        return this;
    }

    /**
     * @param cleanupIntervalStep Wait at least this many commits between removing unused files in data directory
     *                            (default: 10, to
     *                            disable use: 0). For the case where the consolidation policies merge segments often
     *                            (i.e. a lot of
     *                            commit+consolidate), a lower value will cause a lot of disk space to be wasted. For
     *                            the case where the
     *                            consolidation policies rarely merge segments (i.e. few inserts/deletes), a higher
     *                            value will impact
     *                            performance without any added benefits.
     * @return options
     */
    public ArangoSearchCreateOptions cleanupIntervalStep(final Long cleanupIntervalStep) {
        this.cleanupIntervalStep = cleanupIntervalStep;
        return this;
    }

    /**
     * @param consolidationPolicy
     * @return options
     */
    public ArangoSearchCreateOptions consolidationPolicy(final ConsolidationPolicy consolidationPolicy) {
        this.consolidationPolicy = consolidationPolicy;
        return this;
    }

    /**
     * @param links A list of linked collections
     * @return options
     */
    public ArangoSearchCreateOptions link(final CollectionLink... links) {
        this.links = Arrays.asList(links);
        return this;
    }

    /**
     * @param primarySorts A list of linked collections
     * @return options
     */
    public ArangoSearchCreateOptions primarySort(final PrimarySort... primarySorts) {
        this.primarySorts = Arrays.asList(primarySorts);
        return this;
    }

    /**
     * @param primarySortCompression Defines how to compress the primary sort data
     * @return options
     */
    public ArangoSearchCreateOptions primarySortCompression(final ArangoSearchCompression primarySortCompression) {
        this.primarySortCompression = primarySortCompression;
        return this;
    }

    /**
     * @return options
     */
    public ArangoSearchCreateOptions storedValues(final StoredValue... storedValues) {
        this.storedValues = Arrays.asList(storedValues);
        return this;
    }

    public String getName() {
        return name;
    }

    public ViewType getType() {
        return type;
    }

    public Long getConsolidationIntervalMsec() {
        return consolidationIntervalMsec;
    }

    public Long getCommitIntervalMsec() {
        return commitIntervalMsec;
    }

    public Long getCleanupIntervalStep() {
        return cleanupIntervalStep;
    }

    public ConsolidationPolicy getConsolidationPolicy() {
        return consolidationPolicy;
    }

    @JsonSerialize(using = InternalSerializers.CollectionLinksSerializer.class)
    public Collection getLinks() {
        return links;
    }

    public Collection getPrimarySorts() {
        return primarySorts;
    }

    public ArangoSearchCompression getPrimarySortCompression() {
        return primarySortCompression;
    }

    public Collection getStoredValues() {
        return storedValues;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy