Package io.qdrant.client.grpc
Interface Collections.CollectionParamsDiffOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Collections.CollectionParamsDiff
,Collections.CollectionParamsDiff.Builder
- Enclosing class:
- Collections
public static interface Collections.CollectionParamsDiffOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionboolean
If true - point's payload will not be stored in memoryint
Fan-out every read request to these many additional remote nodes (and return first available response)int
Number of replicas of each shard that network tries to maintainint
How many replicas should apply the operation for us to consider it successfulboolean
If true - point's payload will not be stored in memoryboolean
Fan-out every read request to these many additional remote nodes (and return first available response)boolean
Number of replicas of each shard that network tries to maintainboolean
How many replicas should apply the operation for us to consider it successfulMethods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasReplicationFactor
boolean hasReplicationFactor()Number of replicas of each shard that network tries to maintain
optional uint32 replication_factor = 1;
- Returns:
- Whether the replicationFactor field is set.
-
getReplicationFactor
int getReplicationFactor()Number of replicas of each shard that network tries to maintain
optional uint32 replication_factor = 1;
- Returns:
- The replicationFactor.
-
hasWriteConsistencyFactor
boolean hasWriteConsistencyFactor()How many replicas should apply the operation for us to consider it successful
optional uint32 write_consistency_factor = 2;
- Returns:
- Whether the writeConsistencyFactor field is set.
-
getWriteConsistencyFactor
int getWriteConsistencyFactor()How many replicas should apply the operation for us to consider it successful
optional uint32 write_consistency_factor = 2;
- Returns:
- The writeConsistencyFactor.
-
hasOnDiskPayload
boolean hasOnDiskPayload()If true - point's payload will not be stored in memory
optional bool on_disk_payload = 3;
- Returns:
- Whether the onDiskPayload field is set.
-
getOnDiskPayload
boolean getOnDiskPayload()If true - point's payload will not be stored in memory
optional bool on_disk_payload = 3;
- Returns:
- The onDiskPayload.
-
hasReadFanOutFactor
boolean hasReadFanOutFactor()Fan-out every read request to these many additional remote nodes (and return first available response)
optional uint32 read_fan_out_factor = 4;
- Returns:
- Whether the readFanOutFactor field is set.
-
getReadFanOutFactor
int getReadFanOutFactor()Fan-out every read request to these many additional remote nodes (and return first available response)
optional uint32 read_fan_out_factor = 4;
- Returns:
- The readFanOutFactor.
-