com.aerospike.vector.client.proto.HnswHealerParamsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avs-client-java Show documentation
Show all versions of avs-client-java Show documentation
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.5
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 quartz cron expression defining schedule at which the healer cycle is
* invoked.
* Defaults to the global healer config configured for the VectorDB.
*
*
* optional string schedule = 4;
* @return Whether the schedule field is set.
*/
boolean hasSchedule();
/**
*
* The quartz cron expression defining schedule at which the healer cycle is
* invoked.
* Defaults to the global healer config configured for the VectorDB.
*
*
* optional string schedule = 4;
* @return The schedule.
*/
java.lang.String getSchedule();
/**
*
* The quartz cron expression defining schedule at which the healer cycle is
* invoked.
* Defaults to the global healer config configured for the VectorDB.
*
*
* optional string schedule = 4;
* @return The bytes for schedule.
*/
com.google.protobuf.ByteString
getScheduleBytes();
/**
*
* 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