Interface StoreProto.Store.RedisClusterConfigOrBuilder

    • 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.
      • getKeyPrefix

        String getKeyPrefix()
         Optional. Append a prefix to the Redis Key
         
        string key_prefix = 5;
        Returns:
        The keyPrefix.
      • getKeyPrefixBytes

        com.google.protobuf.ByteString getKeyPrefixBytes()
         Optional. Append a prefix to the Redis Key
         
        string key_prefix = 5;
        Returns:
        The bytes for keyPrefix.
      • getEnableFallback

        boolean getEnableFallback()
         Optional. Enable fallback to another key prefix if the original key is not present.
         Useful for migrating key prefix without re-ingestion. Disabled by default.
         
        bool enable_fallback = 6;
        Returns:
        The enableFallback.
      • getFallbackPrefix

        String getFallbackPrefix()
         Optional. This would be the fallback prefix to use if enable_fallback is true.
         
        string fallback_prefix = 7;
        Returns:
        The fallbackPrefix.
      • getFallbackPrefixBytes

        com.google.protobuf.ByteString getFallbackPrefixBytes()
         Optional. This would be the fallback prefix to use if enable_fallback is true.
         
        string fallback_prefix = 7;
        Returns:
        The bytes for fallbackPrefix.
      • getReadFromValue

        int getReadFromValue()
        .feast.core.Store.RedisClusterConfig.ReadFrom read_from = 8;
        Returns:
        The enum numeric value on the wire for readFrom.