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

com.aerospike.vector.client.proto.HnswHealerParamsOrBuilder Maven / Gradle / Ivy

Go to download

This project includes the Java client for Aerospike Vector Search for high-performance data interactions.

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: types.proto

// Protobuf Java Version: 3.25.1
package com.aerospike.vector.client.proto;

public interface HnswHealerParamsOrBuilder extends
    // @@protoc_insertion_point(interface_extends:aerospike.vector.HnswHealerParams)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * Maximum allowed record scan rate per vector db node.
   * Defaults to the global healer config configured for the VectorDB.
   * 
* * optional uint32 maxScanRatePerNode = 1; * @return Whether the maxScanRatePerNode field is set. */ boolean hasMaxScanRatePerNode(); /** *
   * Maximum allowed record scan rate per vector db node.
   * Defaults to the global healer config configured for the VectorDB.
   * 
* * optional uint32 maxScanRatePerNode = 1; * @return The maxScanRatePerNode. */ int getMaxScanRatePerNode(); /** *
   * Maximum number of records in a single scanned page.
   * Defaults to the global healer config configured for the VectorDB.
   * 
* * optional uint32 maxScanPageSize = 2; * @return Whether the maxScanPageSize field is set. */ boolean hasMaxScanPageSize(); /** *
   * Maximum number of records in a single scanned page.
   * Defaults to the global healer config configured for the VectorDB.
   * 
* * optional uint32 maxScanPageSize = 2; * @return The maxScanPageSize. */ int getMaxScanPageSize(); /** *
   * Percentage of good records randomly selected for reindexing in a healer cycle.
   * Defaults to the global healer config configured for the VectorDB.
   * 
* * optional float reindexPercent = 3; * @return Whether the reindexPercent field is set. */ boolean hasReindexPercent(); /** *
   * Percentage of good records randomly selected for reindexing in a healer cycle.
   * Defaults to the global healer config configured for the VectorDB.
   * 
* * optional float reindexPercent = 3; * @return The reindexPercent. */ float getReindexPercent(); /** *
   * The time delay, in milliseconds, between the termination of a healer run
   * and the commencement of the next one for an index. It only guarantees
   * that the next index healer run for an index will not be scheduled before
   * this time delay.
   * Defaults to the global healer config configured for the VectorDB.
   * 
* * optional uint64 scheduleDelay = 4; * @return Whether the scheduleDelay field is set. */ boolean hasScheduleDelay(); /** *
   * The time delay, in milliseconds, between the termination of a healer run
   * and the commencement of the next one for an index. It only guarantees
   * that the next index healer run for an index will not be scheduled before
   * this time delay.
   * Defaults to the global healer config configured for the VectorDB.
   * 
* * optional uint64 scheduleDelay = 4; * @return The scheduleDelay. */ long getScheduleDelay(); /** *
   * Maximum number of records to heal in parallel.
   * Defaults to the global healer config configured for the VectorDB.
   * 
* * optional uint32 parallelism = 5; * @return Whether the parallelism field is set. */ boolean hasParallelism(); /** *
   * Maximum number of records to heal in parallel.
   * Defaults to the global healer config configured for the VectorDB.
   * 
* * optional uint32 parallelism = 5; * @return The parallelism. */ int getParallelism(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy