Package feast.proto.core
Interface StoreProto.Store.RedisClusterConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StoreProto.Store.RedisClusterConfig,StoreProto.Store.RedisClusterConfig.Builder
- Enclosing class:
- StoreProto.Store
public static interface StoreProto.Store.RedisClusterConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetConnectionString()List of Redis Uri for all the nodes in Redis Cluster, comma separated.com.google.protobuf.ByteStringgetConnectionStringBytes()List of Redis Uri for all the nodes in Redis Cluster, comma separated.intgetFlushFrequencySeconds()Optional.intgetInitialBackoffMs()int32 initial_backoff_ms = 2;intgetMaxRetries()int32 max_retries = 3;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getConnectionString
String getConnectionString()
List of Redis Uri for all the nodes in Redis Cluster, comma separated. Eg. host1:6379, host2:6379
string connection_string = 1;- Returns:
- The connectionString.
-
getConnectionStringBytes
com.google.protobuf.ByteString getConnectionStringBytes()
List of Redis Uri for all the nodes in Redis Cluster, comma separated. Eg. host1:6379, host2:6379
string connection_string = 1;- Returns:
- The bytes for connectionString.
-
getInitialBackoffMs
int getInitialBackoffMs()
int32 initial_backoff_ms = 2;- Returns:
- The initialBackoffMs.
-
getMaxRetries
int getMaxRetries()
int32 max_retries = 3;- Returns:
- The maxRetries.
-
getFlushFrequencySeconds
int getFlushFrequencySeconds()
Optional. how often flush data to redis
int32 flush_frequency_seconds = 4;- Returns:
- The flushFrequencySeconds.
-
-