Skip to content

Commit 9e2df8f

Browse files
rinfxCH3CHO
andauthored
add redis init status log (#1867)
Co-authored-by: Kent Dong <[email protected]>
1 parent b897825 commit 9e2df8f

File tree

6 files changed

+29
-9
lines changed

6 files changed

+29
-9
lines changed

plugins/wasm-go/extensions/ai-cache/cache/provider.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const (
1515

1616
type providerInitializer interface {
1717
ValidateConfig(ProviderConfig) error
18-
CreateProvider(ProviderConfig) (Provider, error)
18+
CreateProvider(ProviderConfig, wrapper.Log) (Provider, error)
1919
}
2020

2121
var (
@@ -128,12 +128,12 @@ func (c *ProviderConfig) Validate() error {
128128
return nil
129129
}
130130

131-
func CreateProvider(pc ProviderConfig) (Provider, error) {
131+
func CreateProvider(pc ProviderConfig, log wrapper.Log) (Provider, error) {
132132
initializer, has := providerInitializers[pc.typ]
133133
if !has {
134134
return nil, errors.New("unknown provider type: " + pc.typ)
135135
}
136-
return initializer.CreateProvider(pc)
136+
return initializer.CreateProvider(pc, log)
137137
}
138138

139139
type Provider interface {

plugins/wasm-go/extensions/ai-cache/cache/redis.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ func (r *redisProviderInitializer) ValidateConfig(cf ProviderConfig) error {
1616
return nil
1717
}
1818

19-
func (r *redisProviderInitializer) CreateProvider(cf ProviderConfig) (Provider, error) {
19+
func (r *redisProviderInitializer) CreateProvider(cf ProviderConfig, log wrapper.Log) (Provider, error) {
2020
rp := redisProvider{
2121
config: cf,
2222
client: wrapper.NewRedisClusterClient(wrapper.FQDNCluster{
2323
FQDN: cf.serviceName,
2424
Host: cf.serviceHost,
2525
Port: int64(cf.servicePort)}),
26+
log: log,
2627
}
2728
err := rp.Init(cf.username, cf.password, cf.timeout)
2829
return &rp, err
@@ -31,14 +32,21 @@ func (r *redisProviderInitializer) CreateProvider(cf ProviderConfig) (Provider,
3132
type redisProvider struct {
3233
config ProviderConfig
3334
client wrapper.RedisClient
35+
log wrapper.Log
3436
}
3537

3638
func (rp *redisProvider) GetProviderType() string {
3739
return PROVIDER_TYPE_REDIS
3840
}
3941

4042
func (rp *redisProvider) Init(username string, password string, timeout uint32) error {
41-
return rp.client.Init(rp.config.username, rp.config.password, int64(rp.config.timeout), wrapper.WithDataBase(rp.config.database))
43+
err := rp.client.Init(rp.config.username, rp.config.password, int64(rp.config.timeout), wrapper.WithDataBase(rp.config.database))
44+
if rp.client.Ready() {
45+
rp.log.Info("redis init successfully")
46+
} else {
47+
rp.log.Error("redis init failed, will try later")
48+
}
49+
return err
4250
}
4351

4452
func (rp *redisProvider) Get(key string, cb wrapper.RedisResponseCallback) error {

plugins/wasm-go/extensions/ai-cache/config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ func (c *PluginConfig) Complete(log wrapper.Log) error {
154154
}
155155
if c.cacheProviderConfig.GetProviderType() != "" {
156156
log.Debugf("cache provider is set to %s", c.cacheProviderConfig.GetProviderType())
157-
c.cacheProvider, err = cache.CreateProvider(*c.cacheProviderConfig)
157+
c.cacheProvider, err = cache.CreateProvider(*c.cacheProviderConfig, log)
158158
if err != nil {
159159
return err
160160
}

plugins/wasm-go/extensions/ai-token-ratelimit/config.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ type LimitConfigItem struct {
8282
timeWindow int64 // 时间窗口大小
8383
}
8484

85-
func initRedisClusterClient(json gjson.Result, config *ClusterKeyRateLimitConfig) error {
85+
func initRedisClusterClient(json gjson.Result, config *ClusterKeyRateLimitConfig, log wrapper.Log) error {
8686
redisConfig := json.Get("redis")
8787
if !redisConfig.Exists() {
8888
return errors.New("missing redis in config")
@@ -111,7 +111,13 @@ func initRedisClusterClient(json gjson.Result, config *ClusterKeyRateLimitConfig
111111
Port: int64(servicePort),
112112
})
113113
database := int(redisConfig.Get("database").Int())
114-
return config.redisClient.Init(username, password, int64(timeout), wrapper.WithDataBase(database))
114+
err := config.redisClient.Init(username, password, int64(timeout), wrapper.WithDataBase(database))
115+
if config.redisClient.Ready() {
116+
log.Info("redis init successfully")
117+
} else {
118+
log.Error("redis init failed, will try later")
119+
}
120+
return err
115121
}
116122

117123
func parseClusterKeyRateLimitConfig(json gjson.Result, config *ClusterKeyRateLimitConfig) error {

plugins/wasm-go/extensions/ai-token-ratelimit/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ type LimitRedisContext struct {
8080
}
8181

8282
func parseConfig(json gjson.Result, config *ClusterKeyRateLimitConfig, log wrapper.Log) error {
83-
err := initRedisClusterClient(json, config)
83+
err := initRedisClusterClient(json, config, log)
8484
if err != nil {
8585
return err
8686
}

plugins/wasm-go/pkg/wrapper/redis_wrapper.go

+6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ type RedisResponseCallback func(response resp.Value)
3030

3131
type RedisClient interface {
3232
Init(username, password string, timeout int64, opts ...optionFunc) error
33+
// return whether redis client is ready
34+
Ready() bool
3335
// with this function, you can call redis as if you are using redis-cli
3436
Command(cmds []interface{}, callback RedisResponseCallback) error
3537
Eval(script string, numkeys int, keys, args []interface{}, callback RedisResponseCallback) error
@@ -183,6 +185,10 @@ func respString(args []interface{}) []byte {
183185
return buf.Bytes()
184186
}
185187

188+
func (c *RedisClusterClient[C]) Ready() bool {
189+
return c.ready
190+
}
191+
186192
func (c *RedisClusterClient[C]) Init(username, password string, timeout int64, opts ...optionFunc) error {
187193
for _, opt := range opts {
188194
opt(&c.option)

0 commit comments

Comments
 (0)